-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
{
"name": "challenge-kinvo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p . --outDir dist",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/infra/server/index.ts",
"seed": "ts-node src/helpers/seeders"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.9.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"nodemon": "^3.0.3",
"radash": "^11.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.2.4",
"prisma": "^5.9.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}