-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.76 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.76 KB
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
89
90
91
92
93
{
"name": "swgoh-counters",
"homepage": "https://swgohcounters.com/",
"version": "0.1.0",
"license": "MIT",
"private": true,
"proxy": "http://127.0.0.1:5000",
"scarfSettings.enabled": false,
"scripts": {
"start": "react-scripts start --ignore server",
"lint": "eslint . --fix",
"build": "react-scripts build",
"postbuild": "react-snap --disable-web-security",
"test": "NODE_ENV=test jest --coverage",
"test:only": "NODE_ENV=test jest --coverage",
"test:watch": "nodemon --exec \"NODE_ENV=test jest --verbose\"",
"cover": "nyc -r test-summary -r html -- yarn test:only",
"cover:show": "open ./coverage/index.html",
"eject": "react-app-rewired eject",
"deploy": "yarn run build && gh-pages -d build",
"server": "LOG_LEVEL=debug nodemon server/index.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn start\"",
"dev:deploy": "yarn run build && aws s3 sync build/ s3://saiastrange.com",
"client:deploy": "yarn run build && aws s3 sync build/ s3://swgohcounters.com"
},
"skipThirdPartyRequests": true,
"reactSnap": {
"puppeteerArgs": [
"--disable-web-security"
]
},
"eslintIgnore": [
"**/*.sql"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@welldone-software/why-did-you-render": "^6.1.1",
"axios": "^0.21.1",
"bootstrap": "^4.5.0",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.23.4",
"firebase": "^7.22.0",
"history": "^4.10.1",
"idb": "^5.0.7",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"miragejs": "^0.1.43",
"node-sass": "^4.0.0",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-app-rewired": "^2.1.8",
"react-dom": "^16.13.1",
"react-firebaseui": "^4.1.0",
"react-ga": "^2.7.0",
"react-icons": "^3.11.0",
"react-lazyload": "^3.1.0",
"react-meta-tags": "^0.7.4",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"react-table": "^7.7.0",
"reactstrap": "^8.4.1",
"styled-components": "^5.2.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"concurrently": "^6.0.1",
"nodemon": "^2.0.15",
"pino-pretty": "^4.0.0",
"react-is": "^17.0.1",
"react-snap": "^1.23.0"
}
}