-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "webpack-ui",
"version": "0.0.6",
"description": "UI for webpack",
"main": "lib/index.js",
"bin": {
"wui": "lib/bin/index.js"
},
"directories": {
"lib": "lib"
},
"scripts": {
"build:gui": "cd src/client && npm run build",
"dev:gui": "cd src/client && npm run dev",
"dev:nodemon": "cd src/client && nodemon --exec npm run build",
"dev": "tsc --watch",
"build": "tsc && npm run build:gui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rishabh3112/webpack-ui.git"
},
"keywords": [
"webpack",
"nodejs",
"web",
"webdev"
],
"author": "Rishabh Chawla",
"license": "MIT",
"bugs": {
"url": "https://github.com/rishabh3112/webpack-ui/issues"
},
"homepage": "https://github.com/rishabh3112/webpack-ui#readme",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/inquirer": "^6.0.1",
"@types/node": "^12.0.0",
"@types/prettier": "^1.16.3",
"@types/websocket": "0.0.40",
"@types/yeoman-environment": "^2.3.0",
"@types/yeoman-generator": "^3.1.2",
"typescript": "^3.4.5"
},
"dependencies": {
"chalk": "^2.4.2",
"express": "^4.16.4",
"findup-sync": "^3.0.0",
"jscodeshift": "^0.6.4",
"p-each-series": "^2.1.0",
"prettier": "^1.17.0",
"webpack-log": "^3.0.1",
"websocket": "^1.0.28",
"yeoman-environment": "^2.3.4",
"yeoman-generator": "^3.1.1"
}
}