This repository has been archived by the owner on Feb 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 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
79
80
81
82
83
84
85
86
87
88
{
"name": "overwatch-league-fantasy",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build-app": "cross-env NODE_ENV=production next build src/app",
"build-fns": "babel \"src/functions\" --out-dir \"dist/functions\"",
"build-public": "cpx \"src/public/**/*.*\" \"dist/public\" -C && cpx \"src/app/static/**/*.*\" \"dist/public/static\"",
"clean": "rimraf dist",
"copy-deps": "cpx \"*{package.json,yarn.lock}\" \"dist/functions\"",
"deploy": "firebase deploy",
"dev": "next src/app",
"sort": "sort-package-json",
"test": "jest",
"type-check": "flow",
"type-install": "flow-typed install"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/app/next.config.js"
],
"coverageThreshold": {
"global": {
"branches": 1,
"functions": 1,
"lines": 1,
"statements": 1
}
},
"notify": true,
"setupFiles": [
"<rootDir>/jest.setup.js"
]
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"antd": "^3.10.8",
"axios": "^0.18.0",
"firebase": "^5.5.9",
"firebase-admin": "~6.0.0",
"firebase-functions": "^2.1.0",
"lodash": "^4.17.11",
"next": "^7.0.2",
"next-redux-wrapper": "^2.0.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"react-redux-firebase": "^2.2.3",
"redux": "^4.0.1",
"redux-firestore": "^0.6.3",
"styled-jsx": "^3.1.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-transform-flow-strip-types": "^7.1.6",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"codecov": "^3.1.0",
"cpx": "^1.5.0",
"cross-env": "^5.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"firebase-tools": "^6.3.1",
"flow-bin": "0.86.0",
"flow-typed": "^2.5.1",
"jest": "^23.6.0",
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"sort-package-json": "^1.16.0"
},
"engines": {
"node": "8"
}
}