-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 960 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "node-native-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/bruckmann/node-native-api.git",
"author": "Felipe Bruckmann <felipebruckmann@hotmail.com.br>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --transpile-only ./src/server.ts",
"test": "node --loader tsx --test src/**/**/*.test.ts "
},
"devDependencies": {
"@types/mongoose": "^5.11.97",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3",
"ts-node-dev": "^2.0.0",
"tsx": "^3.12.3",
"typescript": "^4.9.4"
},
"dependencies": {
"csvtojson": "^2.0.10",
"dotenv": "^16.0.3",
"mongoose": "^6.9.0"
}
}