-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 916 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
{
"name": "sandbox-bundler",
"version": "1.0.0",
"description": "一个快速本地启动demo的工具",
"main": "index.js",
"scripts": {
"prepublish": "babel src -d lib"
},
"bin": {
"bundle": "/bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/yklydxtt/sandbox-bunlder.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/yklydxtt/sandbox-bunlder/issues"
},
"homepage": "https://github.com/yklydxtt/sandbox-bunlder#readme",
"dependencies": {
"chokidar": "^3.5.1",
"commander": "^7.2.0",
"ejs": "^3.1.6",
"handlebars": "^4.7.7",
"ws": "^7.4.6"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/parser": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/traverse": "^7.14.5",
"@babel/cli": "^7.0.0",
"open": "^8.2.0"
}
}