This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.14 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
{
"name": "keyforge-arena",
"version": "0.1.0",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mpigsley/keyforge-arena"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"bootstrap": "node -r dotenv/config bootstrap/index.js dotenv_config_path=./.env.local",
"copyShared": "./bootstrap/copy-shared.sh",
"deploy": "npm run build && firebase deploy --except functions",
"deploy:functions": "npm run copyShared && firebase deploy --only functions",
"deploy:all": "npm run copyShared && firebase deploy",
"fetch": "node bootstrap/fetch-cards.js"
},
"dependencies": {
"chance": "^1.0.16",
"classnames": "^2.2.6",
"connected-react-router": "^6.3.1",
"dayjs": "^1.7.7",
"firebase": "^5.8.3",
"history": "^4.7.2",
"lodash": "^4.17.11",
"node-sass": "^4.10.0",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-feather": "^1.1.4",
"react-hint": "^3.1.1",
"react-modal": "^3.8.1",
"react-redux": "^6.0.1",
"react-redux-toastr": "^7.4.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.7",
"redux-saga": "^1.0.1",
"reselect": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"dotenv": "^6.1.0",
"eslint": "5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.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",
"eslint-plugin-react-hooks": "0.0.0",
"firebase-admin": "^7.0.0",
"firebase-tools": "^6.5.0",
"prettier": "^1.15.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!node_modules",
"!src/components/**/index.js"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}