-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.23 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.23 KB
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
{
"private": true,
"license": "UNLICENSED",
"scripts": {
"start": "npm run dev",
"dev": "cross-env DAZE_ENV=dev DEBUG=daze-framework:* nodemon --signal SIGTERM --exec babel-node src/index.js --source-map --preserve-symlinks",
"build": "babel src --out-dir dist --copy-files",
"prod": "cross-env DAZE_ENV=prod node dist/index.js"
},
"engines": {
"node": ">=10.15.0"
},
"dependencies": {
"@dazejs/dubbo-provider": "^1.0.1",
"@dazejs/framework": "^4.2.0",
"reflect-metadata": "^0.1.3",
"ethereumjs-account": "^3.0.0",
"ethereumjs-tx": "^1.3.7",
"vnt": "https://gitee.com/laoluoli/vnt.js.git",
"vnt-kit": "https://gitee.com/laoluoli/vnt-kit.js.git"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.4.4 ",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^8.2.6",
"commitizen": "^3.0.5",
"cross-env": "^5.2.0",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"nodemon": "^1.18.3"
}
}