-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
82 lines (82 loc) · 2.55 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
{
"name": "webapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"seed": "mongoimport -c users --uri mongodb://localhost:27017/hellogov --drop --file conf/seeds.json",
"start": "NODE_ENV=production node index.js",
"start-dev": "NODE_ENV=development nodemon index.js",
"stop-db": "pgrep mongod | xargs kill -2",
"start-db": "mongod --port 27017 --dbpath /data/db --fork --logpath /usr/local/var/log/mongodb/mongod.log",
"restart-db": "npm run stop-db && npm run start-db",
"build": "npm run build-css && npm run build-js",
"build-css": "sass public/scss/styles.scss public/build/css/styles.css",
"build-js": "webpack",
"lint": "eslint -c .eslintrc.js --fix .",
"postinstall": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"angular": "^1.6.4",
"axios": "^0.16.2",
"babel-cli": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.3.2",
"bluebird": "^3.5.0",
"body-parser": "^1.15.2",
"clean-webpack-plugin": "^0.1.16",
"clipboard": "^1.6.0",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"crypto": "0.0.3",
"dotenv": "^6.2.0",
"express": "^4.14.0",
"express-handlebars": "^3.0.0",
"express-http-proxy": "^0.11.0",
"express-session": "^1.14.2",
"handlebars": "^4.0.6",
"hbs": "^4.0.1",
"html-loader": "^0.4.5",
"install": "^0.8.2",
"ipware": "^1.0.0",
"mongoose": "^5.3.12",
"ng-annotate-webpack-plugin": "^0.2.1-pre",
"ng-map-autocomplete": "0.0.1",
"ngclipboard": "^1.1.1",
"node-sass": "^4.5.2",
"node-sass-middleware": "^0.11.0",
"nodemailer": "^4.0.1",
"nodemailer-express-handlebars": "^2.0.0",
"npm": "^4.0.3",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0",
"request": "^2.79.0",
"sass": "^1.15.2",
"serve-favicon": "^2.3.2",
"shortid": "^2.2.6",
"start": "^4.0.2",
"sunlight-congress-api": "^0.3.1",
"ua-parser": "^0.3.5",
"uglifyjs-webpack-plugin": "^0.4.1",
"webpack": "^2.3.2"
},
"devDependencies": {
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"nodemon": "^1.18.7",
"webpack-dev-middleware": "^1.10.1"
},
"engines": {
"node": "10.15.0"
}
}