-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.72 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
52
53
54
55
{
"name": "werewolf-lab",
"version": "1.0.0",
"description": "Webapp to run a werewolf game",
"main": "./server/server.js",
"scripts": {
"build": "webpack --config client/webpack.config.js",
"build:watch": "nodemon --watch client --watch components --ignore bundle.js --ignore bundle.js.map -e '*' --exec npm run build",
"server": "node -r dotenv/config server/server.js",
"server:watch": "nodemon --watch server -e '*' --exec npm run server",
"start": "npm-run-all --parallel build:watch server:watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/un-loop/werewolf-lab.git"
},
"author": "Michael Armes",
"license": "MIT",
"bugs": {
"url": "https://github.com/un-loop/werewolf-lab/issues"
},
"homepage": "https://github.com/un-loop/werewolf-lab#readme",
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/runtime": "^7.11.12",
"@material-ui/core": "^4.11.0",
"aws-sdk": "^2.761.0",
"axios": "^0.20.0",
"dotenv": "^8.2.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-decode-params": "^1.0.0",
"koa-mount": "^4.0.0",
"moment": "^2.29.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-material-ui-form-validator": "^2.1.1",
"redux": "^4.0.5",
"unloop-database-dynamo": "^1.3.2",
"unloop-resource-builder": "^2.0.1",
"unloop-static-router": "^1.0.0",
"webpack": "^4.44.2",
"websocket": "^1.0.32"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"webpack-cli": "^3.3.12"
}
}