-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.56 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
58
{
"name": "gxx-server",
"version": "1.0.0",
"description": "gxchain smart contract compile service",
"keywords": [
"gxs",
"gxchain",
"smart contract",
"compile service"
],
"main": "./dist/index.js",
"scripts": {
"start": "nodemon lib/index.js --exec babel-node --watch lib",
"clean": "rm -rf ./dist/*",
"prebuild": "npm run clean",
"build": "webpack --progress --hide-modules --config build/webpack.config.js"
},
"author": "David Lan <[email protected]> (https://github.com/lanhaoxiang)",
"contributors": [
"David Lan <[email protected]> (https://github.com/lanhaoxiang/)"
],
"engines": {
"node": ">= 6.0.0"
},
"license": "MIT",
"dependencies": {
"adm-zip": "^0.4.13",
"async": "^2.6.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"fs-extra": "^8.0.1",
"method-override": "^2.3.10",
"multer": "^1.3.0",
"superagent": "^3.8.3"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.4.4",
"archiver": "^2.1.1",
"assert": "^1.3.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.14.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"nodemon": "^1.17.5",
"ora": "^3.0.0",
"shelljs": "^0.8.2",
"uglifyjs": "^2.4.11",
"webpack": "^2.6.1",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.18.0",
"webpack-merge": "^4.1.0"
}
}