-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 986 Bytes
/
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
{
"name": "monkey",
"version": "1.0.0",
"main": "index.js",
"author": "binyellow",
"license": "MIT",
"scripts": {
"dev": "vite",
"d": "node scripts/generate-dev-script",
"build": "node scripts/build",
"serve": "vite preview"
},
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@types/node": "^15.9.0",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@types/tampermonkey": "^4.0.0",
"clipboardy": "^2.3.0",
"fs-extra": "^10.0.0",
"less": "^4.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.43.3",
"typescript": "^4.4.4",
"vite": "^2.6.10",
"vite-plugin-babel-import": "^2.0.5",
"vite-plugin-optimize-persist": "^0.1.0",
"vite-plugin-package-config": "^0.0.3"
},
"dependencies": {
"antd": "^4.18.4"
},
"vite": {
"optimizeDeps": {
"include": [
"antd",
"antd/es/button",
"react",
"react-dom"
]
}
}
}