generated from hatchways/express-starter
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "server",
"version": "0.0.0",
"private": true,
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md)\"",
"dev": "nodemon ./bin/www",
"debug": "nodemon --inspect ./bin/www",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --exit --timeout 30000",
"start": "node ./bin/www",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"engines": {
"node": "12.18.x"
},
"dependencies": {
"aws-sdk": "^2.802.0",
"axios": "^0.21.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.13",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemon": "^1.19.1",
"passport": "^0.4.1",
"passport-cookie": "^1.0.8",
"passport-jwt": "^4.0.0",
"puppeteer": "^5.5.0",
"socket.io": "^3.0.1",
"socket.io-cookie-parser": "^1.0.0",
"validator": "^13.1.17"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.13.0",
"mocha": "^6.2.0",
"prettier": "^2.1.2"
}
}