-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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": "fantasy-tools",
"version": "0.1.0",
"dependencies": {
"@3846masa/axios-cookiejar-support": "^0.5.0",
"@auth0/auth0-spa-js": "^1.5.0",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@material-ui/core": "^4.6.1",
"@material-ui/icons": "^4.5.1",
"axios": "^0.19.0",
"formik": "^1.5.8",
"query-string": "^6.9.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-ga": "^2.7.0",
"react-helmet": "^5.2.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.2.0",
"tough-cookie": "^3.0.1",
"valid-url": "^1.0.9"
},
"scripts": {
"build:styles": "postcss tailwind.css -o src/styles.css",
"prebuild": "npm run build:styles",
"prestart": "npm run build:styles",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"cypress:open": "cypress open",
"test:performance": "./scripts/performanceEvaluation.js",
"test:e2e": "./scripts/e2eTests.js",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"autoprefixer": "^9.7.2",
"cypress": "3.6.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.3",
"postcss-cli": "^6.1.3",
"prettier": "^1.19.1",
"tailwindcss": "^1.1.4"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}