-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "vsign-api",
"version": "1.0.0",
"description": "REST API for Vsign site",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts --exec npm run dev:start",
"start": "node .",
"debug": "node --inspect .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"VSIGN",
"REST",
"API"
],
"author": "Evgeny Karpovsky",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^15.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"dotenv": "^8.0.0",
"express": "^4.17.0",
"express-jwt": "^6.0.0",
"helmet": "^3.20.1",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.0",
"@types/compression": "0.0.36",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/express-jwt": "0.0.42",
"@types/fs-extra": "^7.0.0",
"@types/hapi__joi": "^15.0.1",
"@types/helmet": "0.0.44",
"@types/jsonwebtoken": "^8.3.2",
"@types/method-override": "0.0.31",
"@types/mongoose": "^5.5.1",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.2",
"@types/shelljs": "^0.8.5",
"fs-extra": "^8.0.1",
"nodemon": "^1.19.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"shelljs": "^0.8.3",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}