This repository has been archived by the owner on Aug 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 3.72 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "afiliaciones",
"version": "0.1.1",
"description": "App del Partido de la Red para administrar afiliados.",
"main": "index.js",
"repository": "https://github.com/PartidoDeLaRed/afiliaciones",
"scripts": {
"heroku-postbuild": "mkdirp ./build && npm run build",
"test": "standard",
"start": "node index.js",
"dev": "DEBUG=afiliciones* node-dev index.js --no-deps",
"build:css:admin": "pleeease-compile -t build/css/admin.css app/admin/layout/index.css",
"build:css:padron": "pleeease-compile -t build/css/padron.css app/padron/layout/index.css",
"build:css:site": "pleeease-compile -t build/css/site.css app/site/layout/index.css",
"build:css": "npm-run-all --parallel build:css:admin build:css:padron build:css:site",
"watch:css:admin": "pleeease-watch -t build/css/admin.css app/admin/layout/index.css",
"watch:css:padron": "pleeease-watch -t build/css/padron.css app/padron/layout/index.css",
"watch:css:site": "pleeease-watch -t build/css/site.css build/css/site.css app/site/layout/index.css",
"watch:css": "npm-run-all --parallel watch:css:admin watch:css:padron watch:css:site",
"build:js:admin": "mkdirp ./build/js && browserify -t [ hbsfy -t ] -e app/admin/layout/layout.js -o build/js/admin.js",
"build:js:padron": "mkdirp ./build/js && browserify -t [ hbsfy -t ] -e app/padron/layout/layout.js -o build/js/padron.js",
"build:js:site": "mkdirp ./build/js && browserify -t [ hbsfy -t ] -e app/site/layout/layout.js -o build/js/site.js",
"build:js": "npm-run-all --parallel build:js:admin build:js:padron build:js:site",
"watch:js:admin": "mkdir -p ./build/js && watchify -t [ hbsfy -t ] -e app/admin/layout/layout.js -o build/js/admin.js",
"watch:js:padron": "mkdir -p ./build/js && watchify -t [ hbsfy -t ] -e app/padron/layout/layout.js -o build/js/padron.js",
"watch:js:site": "mkdir -p ./build/js && watchify -t [ hbsfy -t ] -e app/site/layout/layout.js -o build/js/site.js",
"watch:js": "npm-run-all --parallel watch:js:admin watch:js:padron watch:js:site",
"watch:admin": "npm-run-all --parallel watch:js:admin watch:css:admin",
"watch:padron": "npm-run-all --parallel watch:js:padron watch:css:padron",
"watch:site": "npm-run-all --parallel watch:css:site watch:js:site",
"watch": "npm-run-all --parallel watch:js watch:css",
"build": "npm-run-all --parallel build:js build:css"
},
"author": "@PartidoDeLaRed",
"license": "GPL-3.0",
"dependencies": {
"aws-sdk": "~2.2.32",
"batch": "~0.5.3",
"body-parser": "~1.14.2",
"browserify": "~12.0.1",
"change-case": "~2.3.1",
"commander": "~2.9.0",
"component-type": "~1.2.0",
"cookie-parser": "~1.4.0",
"cookie-session": "~1.2.0",
"debug": "~2.2.0",
"democracyos-config": "~0.1.1",
"express": "~4.13.3",
"express-certbot-endpoint": "~1.0.0",
"express-form": "~0.12.4",
"express-handlebars": "~2.0.1",
"express-sslify": "~1.1.0",
"express-validator": "~2.20.8",
"form-to-object": "~5.0.0",
"handlebars": "~4.0.5",
"hbsfy": "~2.4.1",
"jquery": "~2.1.4",
"mailchimp-api": "~2.0.7",
"method-override": "~2.3.5",
"mime-types": "~2.1.9",
"mkdirp": "~0.5.1",
"moment": "~2.10.6",
"mongoose": "~4.3.4",
"mongoose-validators": "~0.1.0",
"nodemailer": "~2.5.0",
"nodemailer-sendgrid-transport": "~0.2.0",
"notification": "0.0.6",
"npm-run-all": "~1.5.1",
"page": "~1.6.4",
"passport": "~0.3.2",
"passport-local": "~1.0.0",
"passport-local-mongoose": "~3.1.0",
"pleeease-cli": "~4.0.0",
"selectize": "~0.12.2",
"url-parse": "~1.0.5",
"watchify": "~3.6.1",
"dateformat": "~1.0.12"
},
"devDependencies": {
"node-dev": "~2.7.1",
"standard": "~5.4.1"
}
}