forked from ndidplatform/api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.06 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
{
"name": "ndid-api",
"version": "0.1.0",
"description": "",
"scripts": {
"build": "npx babel src -d ./build/ --source-maps inline && cp -r ./devKey ./build",
"start": "npm run build && node build/server.js",
"test": "npm run build && npx mocha build/test/test.js",
"initDevKey": "npm run build && ROLE=ndid node build/devKeyInit.js",
"delete-local-db-cache": "rm -rf db-api-*"
},
"dependencies": {
"ajv": "^6.4.0",
"body-parser": "^1.18.2",
"encoding-down": "^4.0.0",
"express": "^4.16.3",
"leveldown": "^3.0.2",
"levelup": "^2.0.2",
"morgan": "^1.9.0",
"node-fetch": "^2.1.2",
"source-map-support": "^0.5.4",
"ws": "^5.1.1",
"zeromq": "^4.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^5.0.0",
"mocha": "^5.0.5"
}
}