-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "captain-charger",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"preinstall": "find node_modules/ -name .git -type d -exec rm -rf {} + || exit 0",
"start-server": "clear && nodemon index.ts",
"start-ui": "clear && cd web-ui && ng serve --open",
"postinstall": "if [ -e ../dav-js ]; then npm link ../dav-js; fi",
"gen-n-reg": "node -r ts-node/register gen-n-reg.ts",
"integration-test": "node -r ts-node/register integration-test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DAVFoundation/captain-charger.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DAVFoundation/captain-charger/issues"
},
"homepage": "https://github.com/DAVFoundation/captain-charger#readme",
"engines": {
"node": "~11.0.0"
},
"dependencies": {
"@overnightjs/core": "^1.6.9",
"@overnightjs/jwt": "^1.1.14",
"@overnightjs/logger": "^1.1.9",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dav-js": "github:DAVFoundation/dav-js",
"ethereumjs-wallet": "^0.6.3",
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/express-jwt": "0.0.42",
"@types/jsonwebtoken": "^8.3.5",
"@types/cors": "^2.8.6",
"@types/node": "^12.12.11",
"nodemon": "^2.0.1",
"ts-node": "8.5.2",
"typescript": "3.7.2"
},
"nodemonConfig": {
"ignore": [
"web-ui/**/*"
]
}
}