generated from ctc-uci/npo-backend-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 934 Bytes
/
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
{
"name": "npo-backend-template",
"version": "1.0.0",
"private": true,
"main": "index.js",
"repository": "[email protected]:ctc-uci/npo-backend-template.git",
"author": "CTC <[email protected]>",
"license": "MIT",
"scripts": {
"start": "nodemon app.js",
"prepare": "husky install",
"lint": "eslint '**/*.js'",
"format": "prettier --write \"**/*.js\""
},
"lint-staged": {
"*.js": "yarn run eslint"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eslint": "^8.1.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"firebase-admin": "^10.0.2",
"husky": "^7.0.4",
"nodemon": "^2.0.14",
"pg": "^8.7.3",
"prettier": "^2.4.1"
},
"devDependencies": {
"eslint-config-prettier": "^8.3.0",
"lint-staged": "^11.2.6"
}
}