-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 KB
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": "bartender-game",
"version": "1.0.0",
"description": "Learn your cocktails with a fun and easy game",
"main": "server.js",
"scripts": {
"server": "node server.js",
"client": "node scripts/start-client.js",
"start": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "node scripts/build.js",
"seed": "node scripts/seedDB.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LtBackup/Bartender-Game.git"
},
"keywords": [
"bartend",
"bartender",
"game",
"cocktail"
],
"author": "James Pratt",
"license": "ISC",
"bugs": {
"url": "https://github.com/LtBackup/Bartender-Game/issues"
},
"homepage": "https://github.com/LtBackup/Bartender-Game#readme",
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^4.0.1",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.2.0",
"mongoose": "^5.0.12",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react": "^16.2.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"three": "^0.91.0"
}
}