-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.99 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
{
"name": "snoking-to-benchapp-v2",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/css": "^11.10.6",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.4.0",
"@types/moment": "^2.13.0",
"@types/node": "^18.14.6",
"@types/react": "^18.0.28",
"@types/react-bootstrap": "^0.32.32",
"@types/react-dom": "^18.0.11",
"@types/react-select": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"axios": "^1.3.4",
"cspell": "^6.28.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"file-saver": "^2.0.5",
"ical2json": "^3.1.2",
"jssoup": "^0.0.15",
"moment": "^2.29.4",
"moment-timezone": "^0.5.41",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-bootstrap": "^2.7.2",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"react-select": "^5.7.0",
"source-map-explorer": "^2.5.3",
"typescript": "^4.9.5"
},
"scripts": {
"analyze": "react-scripts build && source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"spellcheck": "cspell src/**/*.{tsx,ts,html}",
"lint": "npx eslint --ext ts,tsx src"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}