-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "esbuild-demo",
"version": "1.0.0",
"main": "index.js",
"author": "wxy <102939294+noBaldAaa@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production node ./esbuild.build.js"
},
"dependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@craftamap/esbuild-plugin-html": "^0.6.1",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"core-js": "^3.33.3",
"esbuild": "^0.19.8",
"esbuild-plugin-clean": "^1.0.1",
"esbuild-plugin-inline-image": "^0.0.9",
"esbuild-plugin-less": "^1.3.1",
"postcss": "^8.4.32",
"postcss-css-variables": "^0.19.0",
"postcss-preset-env": "^9.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.2"
},
"browserslist": {
"production": [
"> 0.2%",
"ie 10"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
}
}