-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·45 lines (45 loc) · 1.17 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
{
"name": "@wespr/pando-cli",
"version": "1.0.0",
"description": "",
"main": "./src/index.ts",
"scripts": {
"start": "npm-run-all --parallel watch:server watch:build",
"dev": "webpack --watch",
"watch:server": "nodemon \"./build/bundle.js\" --watch \"./build\" ",
"watch:build": "webpack --watch",
"build": "webpack -p",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"pando": "./lib/main.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@aragon/os": "^3.1.3",
"@types/commander": "^2.12.2",
"@types/inquirer": "0.0.41",
"@types/touch": "^3.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chalk": "^2.3.2",
"inquirer": "^5.2.0",
"jsonfile": "^4.0.0",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.1",
"touch": "^3.1.0",
"ts-loader": "^4.3.1",
"typescript": "^2.5.3",
"webpack": "^4.10.2",
"webpack-cli": "^3.0.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@types/node": "^9.6.2",
"js-yaml": "^3.12.0",
"pando-lib": "file:../pando-lib",
"web3": "^1.0.0-beta.34",
"yargs": "^11.0.0"
}
}