-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
38 lines (38 loc) · 981 Bytes
/
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
{
"name": "hackflowy",
"version": "0.0.3",
"license": "MIT",
"description": "A simple WorkFlowy clone",
"dependencies": {
"body-parser": "^1.14.2",
"bower": "^1.7.7",
"config": "~1.19.0",
"errorhandler": "^1.4.3",
"express": "^4",
"lodash": "^4.0.1",
"method-override": "^2.3.5",
"path": "~0.12.7",
"pg": "~3.4.1",
"sequelize": "~3.17.3",
"sequelize-cli": "^2.3.1",
"socket.io": "~1.4.4"
},
"devDependencies": {
"sqlite3": "~3.1.1"
},
"engines": {
"node": "5.4.x",
"npm": "3.3.11"
},
"scripts": {
"start": "node server.js",
"db:migrate": "./node_modules/.bin/sequelize -m --config config/database.json",
"db:seed": "node db/seed/initial_tasks.js",
"bower:i": "node node_modules/bower/bin/bower install",
"postinstall": "npm run db:migrate && npm run db:seed && npm run bower:i"
},
"repository": {
"type": "git",
"url": "git://github.com/abhshkdz/HackFlowy.git"
}
}