-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"private": true,
"main": "app/index.js",
"type": "module",
"scripts": {
"build": "prisma generate",
"start": "node --watch app/index.js",
"dep-graph": "depcruise --exclude \"^node_modules\" --output-type dot app | dot -T svg > dependency-graph.svg",
"test": "vitest"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"dependency-cruiser": "^12.5.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.7.1",
"prettier-plugin-prisma": "^4.10.0",
"prisma": "^4.10.1",
"vitest": "^0.28.1"
},
"dependencies": {
"@prisma/client": "^4.10.1",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"got": "^12.5.3",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.0.1",
"uuid": "^9.0.0"
}
}