-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 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
{
"name": "bath-plugin",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/lab": "^5.0.0-alpha.48",
"@mui/material": "^5.0.1",
"classnames": "^2.3.1",
"date-fns": "^2.24.0",
"node-sass": "^4.14",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"react-scroll-sync": "^0.9.0",
"react-spring-bottom-sheet": "^3.4.0",
"typescript": "^4.1.2",
"uuid": "^8.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && yarn create-dist",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"create-dist": "mkdir build/dist && yarn copy-main",
"copy-main": "cp build/static/js/main*.chunk.js build/dist && mv build/dist/main*.chunk.js build/dist/main-bundle.js && yarn copy-main-2",
"copy-main-2": "cp build/static/js/2*.chunk.js build/dist && mv build/dist/2*.chunk.js build/dist/main-bundle-2.js && yarn copy-css",
"copy-css": "cp build/static/css/main*.chunk.css build/dist && mv build/dist/main*.chunk.css build/dist/main-css.css"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/node": "^16.9.6",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-scroll-sync": "^0.8.2",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0"
}
}