generated from ctc-uci/npo-backend-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "cell-dogs-backend",
"version": "1.0.0",
"private": true,
"main": "index.js",
"repository": "[email protected]:ctc-uci/cell-dogs-backend.git",
"author": "CTC <[email protected]>",
"license": "MIT",
"scripts": {
"start": "nodemon app.js",
"prepare": "husky install",
"lint": "eslint '**/*.js'",
"format": "prettier --write \"**/*.js\"",
"pull-db": "npx prisma db pull && npx prisma generate"
},
"lint-staged": {
"*.js": "yarn run eslint"
},
"dependencies": {
"@prisma/client": "4.12.0",
"cors": "^2.8.5",
"cryptr": "^6.2.0",
"dotenv": "^10.0.0",
"eslint": "^8.1.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"firebase-admin": "^11.5.0",
"nodemailer": "^6.9.1",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"pg-promise": "^10.12.1",
"prettier": "^2.4.1",
"uuid-v4": "^0.1.0",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prisma": "4.12.0"
}
}