-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "ogame",
"version": "0.0.0",
"license": "GPL-3.0",
"engines": {
"node": ">=8.5",
"npm": ">=5.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bluebird": "^3.5.0",
"bull": "^3.2.0",
"express": "^4.15.4",
"express-graphql": "^0.6.11",
"gaussian": "^1.1.0",
"graphql": "^0.11.3",
"graphql-relay": "^0.5.2",
"moment": "^2.18.1",
"passport": "^0.4.0",
"redis": "^2.8.0",
"redlock": "^3.0.0",
"winston": "^2.3.1"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.54.1",
"nyc": "^11.2.1",
"webpack": "^3.5.6",
"webpack-bundle-analyzer": "^2.9.0"
},
"scripts": {
"lint-js": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"lint": "yarn run lint-js && yarn run lint-css",
"fix-js": "yarn run lint-js -- --fix",
"fix-css": "yarn run lint-css -- --fix",
"fix": "yarn run fix-js && yarn run fix-css",
"bundle": "babel-node tools/run bundle",
"build": "babel-node tools/run build",
"build-stats": "yarn run build -- --release --analyse",
"test": "ava"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
}
}