forked from likeabosslearning/Flatris-LAB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.43 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
{
"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.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"rollbar": "^2.9.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"@react-mock/state": "^0.1.8",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"css-loader": "^3.1.0",
"eslint": "^6.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.12.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.0",
"eslint-plugin-react": "^7.14.3",
"flow-bin": "^0.89.0",
"flow-typed": "^2.6.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "24.8.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"react-cosmos": "^5.0.0-beta.15",
"react-cosmos-redux": "^1.1.0",
"react-test-renderer": "^16.8.6",
"redux-devtools-extension": "^2.13.8",
"style-loader": "^0.23.1"
}
}