forked from wellyshen/react-cool-virtual
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.55 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
{
"name": "rcv-app",
"private": true,
"scripts": {
"link-pkg": "yarn link 'react-cool-virtual'",
"start:dev": "REACT_APP_ENV=dev react-scripts start",
"start:prod": "react-scripts start",
"start:local-prod": "yarn build && serve -s build",
"build": "react-scripts build",
"lint": "run-s lint:*",
"lint:code": "eslint --fix . --ext .js,.ts,.tsx",
"lint:type": "tsc",
"lint:style": "stylelint --fix \"**/*.{css,ts,tsx}\"",
"lint:format": "prettier -w . -u --loglevel silent",
"clean": "run-p clean:*",
"clean:build": "rimraf build",
"clean:cov": "rimraf coverage",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@types/node": "^15.12.3",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"axios": "^0.21.1",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"typescript": "~4.3.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/uuid": "^8.3.0",
"eslint-config-welly": "^1.11.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"sass": "^1.35.1",
"serve": "^12.0.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0"
},
"resolutions": {
"postcss-safe-parser": "4"
}
}