-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.03 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "aurora-backend",
"version": "1.0.0",
"description": "Gateway service used in front of aurora-core",
"author": "Bogdan Carpusor <[email protected]>",
"main": "src/app/app.ts",
"license": "Apache",
"scripts": {
"clean": "rimraf build",
"prebuild": "npm run clean",
"build": "tsc",
"prestart": "npm run build",
"start": "node ./build/app/app.js",
"predev": "npm run clean",
"dev": "concurrently \"npm run tsc-watch\" \"npm run nodemon\"",
"prenodemon": "wait-on ./build/app.js",
"nodemon": "nodemon -r dotenv/config --delay 1500ms --watch .env --watch ./build --inspect \"./build/app.js\" dotenv_config_path=.env",
"tsc-watch": "tsc -w",
"lint": "tslint -c tslint.json \"./src/**/*.ts\""
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"express",
"node.js",
"typescript",
"REST",
"API",
"openstack"
],
"engines": {
"node": "6.x",
"npm": "3.x"
},
"dependencies": {
"body-parser": "^1.17.0",
"connect-redis": "^3.2.0",
"core-js": "2.4.1",
"cors": "^2.8.1",
"dotenv": "^2.0.0",
"express": "4.14.0",
"express-session": "^1.15.1",
"js-yaml": "^3.8.2",
"morgan": "1.7.0",
"object-hash": "^1.1.5",
"rabbot": "^1.0.8",
"redis": "^2.6.5",
"request": "^2.79.0",
"sequelize": "^3.29.0",
"serialize-error": "^2.0.0",
"socket.io": "^1.7.3",
"winston": "2.2.0",
"winston-logstash": "^0.3.0"
},
"devDependencies": {
"@types/body-parser": "^1.16.1",
"@types/connect-redis": "0.0.5",
"@types/cors": "^2.8.1",
"@types/express": "4.0.33",
"@types/express-session": "0.0.32",
"@types/js-yaml": "^3.5.29",
"@types/morgan": "1.7.32",
"@types/request": "0.0.37",
"@types/socket.io": "^1.4.29",
"@types/validator": "5.7.34",
"@types/winston": "0.0.28",
"concurrently": "3.1.0",
"dotenv": "2.0.0",
"nodemon": "1.11.0",
"rimraf": "2.5.4",
"tslint": "3.15.1",
"typescript": "2.0.3",
"wait-on": "1.5.3"
}
}