-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 962 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 962 Bytes
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
{
"name": "advisor",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc -p .",
"prestart": "npm run build",
"start": "node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --transpileOnly src/app.ts",
"tsc": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.16.4",
"ts-node-dev": "^1.0.0-pre.40",
"@types/bluebird": "^3.5.27",
"@types/validator": "^10.11.1",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.9.1",
"sequelize-cli": "^5.5.0"
},
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/express": "^4.16.1",
"@types/jasmine": "^3.3.9",
"@types/node": "^11.10.5",
"ts-node": "^8.0.3",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
}
}