-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.83 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.83 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
{
"name": "kwf-react-starter",
"version": "1.0.0",
"private": true,
"dependencies": {
"react": "^17.0.1",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@types/node": "^14.14.7",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/styled-components": "^5.1.4",
"@types/webpack-dev-server": "^3.11.1",
"@types/webpack-env": "^1.15.3",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"babel-loader": "^8.3.0",
"babel-plugin-styled-components": "^1.11.1",
"babel-preset-react-app": "^10.0.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-unused-imports": "^1.0.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.0.1",
"prettier": "^2.1.2",
"style-loader": "^2.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development BABEL_ENV=development webpack serve --config ./webpack.config.ts",
"build": "cross-env NODE_ENV=production BABEL_ENV=production webpack --config ./webpack.config.ts --progress",
"lint": "npm run lint:eslint && npm run lint:tsc",
"lint:eslint": "eslint --ext .ts,.tsx,.js,.jsx,.json,.md src/",
"lint:tsc": "tsc --project ."
}
}