forked from ovidiuch/flatris
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
77 lines (77 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
{
"private": true,
"name": "flatris",
"license": "MIT",
"description": "A fast-paced two-player web game",
"repository": {
"type": "git",
"url": "https://github.com/skidding/flatris.git"
},
"scripts": {
"lint": "eslint '**/*.js'",
"format": "prettier --write '**/*.{js,css}' '!**/{flow-typed,.next}/**'",
"test": "flow && yarn lint && jest --maxWorkers=4",
"test:watch": "jest --watch",
"cosmos": "cosmos --config web/cosmos.config.json",
"cosmos:export": "cosmos-export --config web/cosmos.config.json",
"dev:client": "babel-node server/start-dev-client.js",
"dev:server": "babel-node server/start-dev-server.js",
"dev:server:watch": "nodemon server/start-dev-server.js --exec babel-node",
"build": "next build web",
"start": "babel-node server/start-prod.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"clipboard": "^2.0.4",
"cookie": "^0.4.0",
"cookie-parser": "^1.4.4",
"crc-32": "^1.2.0",
"express": "^4.17.1",
"firebase-admin": "^8.3.0",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.15",
"next": "^7.0.2",
"next-redux-wrapper": "^1.3.5",
"prop-types": "^15.7.2",
"raf": "^3.4.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-flow": "^7.8.3",
"@react-mock/state": "^0.1.8",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "25.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-react": "^7.18.3",
"flow-bin": "^0.89.0",
"flow-typed": "^2.6.2",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"react-cosmos": "^5.0.6",
"react-cosmos-redux": "^1.1.0",
"react-test-renderer": "^16.12.0",
"redux-devtools-extension": "^2.13.8",
"style-loader": "^1.1.3"
}
}