-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.6 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
89
{
"name": "cruzhacks-2021-website",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@mdi/js": "^5.9.55",
"@mdi/react": "^1.4.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"firebase-tools": "^9.1.2",
"react": "^16.14.0",
"react-dom": "^16.13.1",
"react-lottie": "^1.2.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-spinners": "^0.10.4",
"sass": "^1.32.8",
"typescript": "^4.1.3"
},
"engines": {
"node": "^14.11.0",
"yarn": "^1.22.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest --watch",
"test:once": "jest",
"test:ci": "jest --coverage --ci --color --runInBand",
"eject": "react-scripts eject",
"lint": "npm-run-all -c lint:*",
"lint:ts": "eslint 'src/**/*.{js, jsx, ts,tsx}'",
"lint:css": "stylelint --allow-empty-input 'src/**/*.{css,scss}'",
"deploy:test": "firebase deploy --only hosting:test",
"deploy:production": "firebase deploy --only hosting:production"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/preset-typescript": "^7.12.7",
"@types/classnames": "^2.2.10",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-lottie": "^1.2.5",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "4.12.0",
"@typescript-eslint/parser": "4.12.0",
"dotenv": "^8.2.0",
"eslint": "7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest-junit": "^12.0.0",
"jest-puppeteer": "^4.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"puppeteer": "^5.5.0",
"serve": "^11.3.2",
"stylelint": "^13.11.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-use-variable": "^1.7.2",
"stylelint-scss": "^3.18.0"
}
}