-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
{
"name": "pushingtogether",
"version": "1.0.0",
"description": "pushing together webservice",
"main": "app.js",
"scripts": {
"test": "./scripts/test.sh",
"test:controllers": "mocha 'test/controllers/*.js'",
"test:models": "mocha 'test/models/*.js'",
"coverage": "istanbul cover _mocha test/**/*.js -- -R spec",
"db:drop:dev": "sudo -u postgres psql -c \"drop database pt_dev\"",
"db:drop:dev:osx": "psql -c \"drop database pt_dev\"",
"db:migrate": "./node_modules/.bin/sequelize db:migrate",
"db:migrate:undo": "./node_modules/.bin/sequelize db:migrate:undo",
"db:seed": "./node_modules/.bin/sequelize db:seed:all",
"migration:create": "./node_modules/.bin/sequelize migration:create",
"setup": "./scripts/quickstart.sh",
"setup:osx": "./scripts/OSX_quickstart.sh",
"start": "./scripts/start.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cidadedemocratica/pushingtogether.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/cidadedemocratica/pushingtogether/issues"
},
"homepage": "https://github.com/cidadedemocratica/pushingtogether#readme",
"dependencies": {
"axios": "^0.15.3",
"body-parser": "^1.15.2",
"connect-roles": "^3.1.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"express-session": "^1.14.2",
"istanbul": "^0.4.5",
"kue": "^0.11.5",
"morgan": "^1.7.0",
"node-cron": "^1.1.2",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"pg-native": "^1.10.0",
"pluralize": "^3.0.0",
"sequelize": "^3.27.0",
"sequelize-cli": "^2.4.0",
"validator": "^6.1.0"
},
"devDependencies": {
"browser-sync": "^2.18.2",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"expect": "^1.20.2",
"gulp": "^3.9.1",
"gulp-jslint": "^1.0.5",
"jslint": "^0.10.3",
"mocha": "^3.1.2",
"node-mocks-http": "^1.5.4",
"nodemon": "^1.11.0"
}
}