generated from SpecialAgency-Chat/ReactEsbuildTemplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
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": "fake-link-generator",
"version": "1.0.0",
"main": "src/js/client.tsx",
"repository": "https://github.com/waki285/FakeLinkGenerator",
"author": "waki285 <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"npm": "Please use yarn"
},
"scripts": {
"build": "node build.js",
"clean": "rimraf dist",
"dev": "cross-env NODE_ENV=development node build.js --dev",
"prebuild": "yarn clean",
"predev": "yarn clean"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"cross-env": "^7.0.3",
"cssnano": "^5.1.14",
"esbuild": "^0.17.4",
"esbuild-plugin-copy": "^2.0.2",
"esbuild-sass-plugin": "^2.4.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.1.2",
"yarn": "^1.22.19"
},
"dependencies": {
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"postcss-preset-env": "^8.0.0",
"react-device-detect": "^2.2.2",
"tailwindcss": "^3.2.4"
}
}