-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.39 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "avalon-roles",
"version": "0.4.1",
"description": "Avalon game organiser",
"scripts": {
"start:production": "DEBUG=avalon:* node src/server/index.js",
"start": "DEBUG=avalon:* nodemon src/server/index.js --ignore src/client/ --ignore dist --ignore .cache",
"build:production": "parcel build src/client/index.html",
"build": "parcel src/client/index.html",
"heroku-postbuild": "npm run build:production",
"lint": "eslint src",
"prettier": "prettier --write 'src/**/*.js'",
"test": "jest",
"deploy": "scripty"
},
"dependencies": {
"debug": "^4.1.1",
"knuth-shuffle": "^1.0.1",
"koa": "^2.5.2",
"koa-route": "^3.2.0",
"koa-session": "^5.8.2",
"koa-static": "^5.0.0",
"koa-websocket": "^5.0.1",
"pat": "0.0.1",
"prop-types": "^15.7.2",
"react": "16.8.x",
"react-dom": "16.8.x",
"react-router-dom": "^4.3.1",
"semantic-ui-css": "^2.3.3",
"semantic-ui-react": "^0.82.1",
"source-map-support": "^0.5.12",
"uuid": "^3.3.2"
},
"main": "./server/index.js",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.1",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime-corejs2": "^7.5.1",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.8.0",
"eslint": "^5.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.10.0",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"nodemon": "^1.18.3",
"parcel": "^1.12.3",
"prettier": "1.18.2",
"react-test-renderer": "^16.4.1",
"sass": "^1.22.3",
"scripty": "^1.9.1"
},
"xo": {
"space": 2,
"prettier": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/weizhongtan/avalon-roles.git"
},
"author": "wzt",
"license": "MIT",
"bugs": {
"url": "https://github.com/weizhongtan/avalon-roles/issues"
},
"homepage": "https://github.com/weizhongtan/avalon-roles#readme",
"engines": {
"node": "10"
},
"jest": {
"verbose": true,
"clearMocks": true,
"testURL": "http://localhost/"
}
}