-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.46 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.46 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
{
"name": "aurora-core",
"version": "1.0.0",
"description": "Provides abstraction in order to interract with OpenStack services APIs",
"author": "Bogdan Carpusor <bcarpusor@cloudbasesolutions.com>",
"main": "app/app.ts",
"license": "Apache",
"scripts": {
"clean": "rimraf build",
"prebuild": "npm run clean",
"build": "tsc",
"prestart": "npm run build",
"start": "node ./build/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 dev.env --watch ./build --inspect \"./build/app.js\" dotenv_config_path=.env",
"tsc-watch": "tsc -w",
"lint": "tslint -c tslint.json \"./app/**/*.ts\""
},
"engines": {
"node": "6.x",
"npm": "3.x"
},
"dependencies": {
"body-parser": "^1.17.1",
"core-js": "2.4.1",
"dotenv": "^2.0.0",
"express": "4.14.0",
"rabbot": "^1.0.8",
"request": "^2.79.0",
"sequelize": "^3.29.0",
"serialize-error": "2.0.0",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/express": "4.0.33",
"@types/express-session": "0.0.32",
"@types/morgan": "1.7.32",
"@types/request": "0.0.37",
"@types/validator": "5.7.34",
"@types/winston": "0.0.28",
"concurrently": "3.1.0",
"nodemon": "1.11.0",
"rimraf": "2.5.4",
"tslint": "3.15.1",
"typescript": "2.0.3",
"wait-on": "1.5.3"
}
}