-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.22 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.22 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "drivenet-app",
"version": "1.0.1",
"description": "an application for interacting with drivenet",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:server && npm run build:client",
"build:server": "npm run get-details && tsc",
"build:server:watch": "npm run get-details && tsc -w",
"build:client": "node utils/manageClientUI.js build",
"lint": "npm run lint:server && npm run lint:client",
"lint:server": "eslint src/**/*.ts",
"lint:client": "node utils/manageClientUI.js lint",
"postinstall": "node utils/manageClientUI.js install",
"nodeshift": "nodeshift deploy",
"nodeshift-resource": "nodeshift resource",
"nodeshift-build": "nodeshift build",
"nodeshift-apply": "nodeshift apply-resource",
"nodeshift-undeploy": "nodeshift undeploy",
"nodemon": "nodemon --watch dist --delay 5 --exec npm start",
"start": "node dist/src/drivenet.js serve",
"get-details": "node utils/get-details.js",
"version": "npm run get-details"
},
"keywords": [
"drivenet",
"fabric",
"ibp"
],
"author": "awjh",
"license": "Apache-2.0",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.8",
"@types/helmet": "0.0.47",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.11.5",
"@types/passport": "^1.0.4",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.4.0",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4",
"nodeshift": "^7.2.0",
"typescript": "^3.9.7"
},
"dependencies": {
"commander": "^5.1.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fabric-ca-client": "^1.4.13",
"fabric-network": "^1.4.13",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"react-cookie": "^4.0.3"
}
}