-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.45 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": "react-no-cra-template",
"version": "0.1.0",
"author": "Tzu Yin (Charlie)",
"description": "A react app template without create-react-app but with webpack config.",
"scripts": {
"start": "make start",
"build": "make build"
},
"repository": {
"type": "git",
"url": "git@github.com:tzynwang/react-no-cra-template.git"
},
"dependencies": {
"@svgr/webpack": "^6.5.1",
"css-loader": "^6.7.3",
"dotenv": "^16.0.3",
"esbuild-loader": "^3.0.0",
"esbuild-runner": "^2.2.2",
"fs-extra": "^11.1.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^7.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.12",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"webpack-dev-server": "^4.11.1"
},
"resolutions": {
"svgo": "^3.0.2"
},
"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"
]
}
}