-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
59
60
61
62
63
64
65
{
"name": "vml",
"version": "1.0.0",
"description": "API server for Vande Mataram Library",
"private": true,
"scripts": {
"start": "per-env",
"start:development": "npm run build & npm run serve",
"start:production": "npm run build && npm run serve",
"build": "per-env",
"build:development": "tsc -w",
"build:production": "tsc",
"serve": "per-env",
"serve:development": "nodemon --delay 1 -r dotenv/config build/server.js",
"serve:production": "nohup node -r dotenv/config build/server.js &",
"lint": "tslint -c tslint.json './src/**/*.ts' './types/**/*.ts'",
"test": "lab -c",
"test-cover": "lab -c -r html -o ./test/artifacts/coverage.html && open ./test/artifacts/coverage.html"
},
"pre-commit": [
"lint",
"build:production"
],
"repository": {
"type": "git",
"url": "https://github.com/vandemataramlib/vml"
},
"author": "Prashant Tiwari <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vandemataramlib/vml/issues"
},
"homepage": "https://github.com/vandemataramlib/vml",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"@gar/hapi-json-api": "^2.0.1",
"confidence": "^3.0.1",
"core-js": "^2.4.1",
"dotenv": "^2.0.0",
"glue": "^3.3.0",
"hapi": "^13.x.x",
"hapi-mongodb": "^6.0.0",
"hapi-swagger": "^6.2.0",
"hoek": "^4.0.2",
"inert": "^4.0.1",
"joi": "^9.0.4",
"jsonapi-serializer": "^3.3.0",
"mongodb": "^2.2.5",
"per-env": "^1.0.2",
"sanscript": "^0.0.2",
"vision": "^4.1.0",
"vml-common": "https://github.com/vandemataramlib/vml-common.git"
},
"devDependencies": {
"code": "^3.0.2",
"exiting": "^2.0.1",
"lab": "^10.9.0",
"nodemon": "^1.10.0",
"pre-commit": "^1.1.3",
"tslint": "^3.14.0",
"typescript": "^1.8.10"
}
}