-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1004 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
38
39
40
41
42
43
44
45
46
47
{
"name": "node-js-getting-started",
"version": "0.3.0",
"description": "A sample Node.js app using Express 4",
"engines": {
"node": "12.x"
},
"main": "game.js",
"scripts": {
"start": "nodemon game.js",
"test": "mocha || true"
},
"dependencies": {
"assert": "^2.0.0",
"bcrypt": "^3.0.6",
"ejs": "^2.5.6",
"express": "^4.17.1",
"flash": "^1.1.0",
"nodemailer": "^6.3.1",
"nodemon": "^1.19.4",
"pg": "^7.12.1",
"phaser": "^3.20.1",
"randomstring": "^1.1.5",
"socket.io": "^2.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^6.2.2",
"request": "^2.81.0",
"socket.io-client": "^2.3.0",
"superagent": "^5.1.0",
"supertest": "^4.0.2",
"tape": "^4.7.0",
"zombie": "^6.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-getting-started"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT"
}