-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.56 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
{
"name": "20-words-game-api",
"version": "1.0.0",
"description": "An opensource web game to help you read minds",
"main": "src/index.js",
"repository": "https://github.com/nzediegwu1/20-questions-game.git",
"author": "anaeze <nzediegwu1@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nzediegwu1/20-questions-game/issues"
},
"homepage": "https://github.com/nzediegwu1/20-questions-game#readme",
"scripts": {
"start": "node server/dist/index.js",
"dev": "babel-watch server/index.js",
"heroku-prebuild": "cd client && yarn",
"build": "npm-run-all --parallel build-client build-server",
"build-client": "cd client && yarn build",
"build-server": "babel server -d server/dist"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"bcrypt": "^5.0.0",
"body-parser": "^1.18.2",
"connect-history-api-fallback": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"eslint": "^4.18.1",
"express": "^4.16.2",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.4.22",
"npm-run-all": "^4.1.5",
"socket.io": "^2.3.0",
"volleyball": "^1.4.1",
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-watch": "^7.0.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0"
}
}