-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "nodejs-expressjs-prisma-boilerplate",
"version": "0.0.0",
"private": true,
"main": "dist/server.js",
"scripts": {
"lint": "eslint . && echo '✔ Your .js files look good.'",
"lint-fix": "eslint . --fix",
"test": "npm run lint",
"start": "node server.js",
"dev": "NODE_ENV=development nodemon server.js",
"prisma-format": "npx prisma format",
"prisma-db-push": "npx prisma dp push"
},
"dependencies": {
"@prisma/client": "^4.5.0",
"config": "^3.3.8",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"express-boom": "^3.0.0",
"helmet": "^6.0.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"prisma": "^4.5.0",
"winston": "3.8.2"
},
"devDependencies": {
"concurrently": "^7.5.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4"
},
"engines": {
"node": ">16.0.0"
}
}