-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "halp-server",
"version": "1.0.0",
"description": "Halp server",
"main": "lib/index.js",
"typings": "lib/index",
"files": [
"lib"
],
"engines": {
"node": "^7.7.3"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "shx rm -fR ./lib",
"compile": "tsc",
"dev": "npm run build && npm run watch",
"lint": "tslint './src/**/*.ts'",
"prepublish": "npm run build",
"start": "npm run build && node lib/index.js",
"start:db": "cd db/ && psql -f create-db.sql && psql -f populate-db.sql",
"watch": "npm-run-all --parallel watch:*",
"watch:ts": "tsc -w",
"watch:js": "nodemon --watch lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/halp-project/halp-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/halp-project/halp-server/issues"
},
"homepage": "https://github.com/halp-project/halp-server#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"cors": "^2.8.3",
"express": "^4.15.2",
"jwt-simple": "^0.5.1",
"moment": "^2.18.1",
"morgan": "^1.8.1",
"pg": "^6.1.5",
"pg-hstore": "^2.3.2",
"pg-promise": "^5.6.7",
"sequelize": "^3.30.4"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/bluebird": "^3.5.3",
"@types/body-parser": "^1.16.3",
"@types/cors": "^2.8.1",
"@types/express": "^4.0.35",
"@types/jwt-simple": "^0.5.33",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.7.32",
"@types/pg-promise": "^5.4.3",
"@types/sequelize": "^4.0.51",
"concurrently": "^3.4.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"sequelize-cli": "^2.7.0",
"shx": "^0.2.2",
"tslint": "^4.4.2",
"typescript": "^2.2.2"
}
}