-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
55
56
{
"name": "node-js-getting-started",
"version": "0.3.0",
"description": "A sample Node.js app using Express 4",
"engines": {
"node": "14.x"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon src/app.js --exec \"npm run lint && node\"",
"lint": "eslint .",
"test": "node test.js",
"prepare": "husky install"
},
"dependencies": {
"body-parser": "^1.19.0",
"connect-redis": "^5.1.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.15.2",
"express-session": "^1.17.1",
"mongodb": "^3.6.4",
"mongoose": "^5.11.18",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"socket.io": "^3.1.2"
},
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo": "^0.36.0",
"got": "^11.3.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"tape": "^4.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-getting-started"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}