-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
90 lines (90 loc) · 2.81 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
84
85
86
87
88
89
90
{
"private": true,
"name": "www.democracy.space",
"version": "1.0.0",
"description": "www.democracy.space",
"scripts": {
"css-build": "node-sass --omit-source-map-url styles.sass assets/styles.css && node-sass --omit-source-map-url --output-style=compressed styles.sass assets/styles.min.css",
"start": "node server.js",
"test": "echo \"Linting...\" && npm run eslint",
"eslint": "LIST=`git diff-index --name-only --diff-filter=d HEAD | grep .*.js | grep -v json`; if [ \"$LIST\" ]; then eslint --fix $LIST; fi"
},
"main": "server.js",
"pre-commit": {
"run": [
"test"
]
},
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-brands-svg-icons": "^5.10.2",
"@fortawesome/free-regular-svg-icons": "^5.10.2",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@fortawesome/pro-solid-svg-icons": "^5.10.2",
"@google/maps": "^0.5.5",
"babel-loader": "^8.0.5",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"browser-cookies": "^1.2.0",
"caller-path": "^2.0.0",
"check-node-version": "^3.2.0",
"clipboard": "^2.0.1",
"compression": "^1.7.1",
"cookie-parser": "^1.4.3",
"core-js": "^3.1.4",
"corejs": "^1.0.0",
"cors": "^2.8.4",
"datasets-us-states-abbr-names": "^1.0.0",
"datasets-us-states-names-abbr": "^1.0.0",
"express": "^4.16.1",
"form-urlencoded": "2.0.4",
"humanize-duration": "^3.12.1",
"isomorphic-fetch": "^2.2.1",
"lighterhtml-plus": "^1.5.0",
"moment": "^2.20.1",
"moment-timezone": "^0.5.14",
"nprogress": "^0.2.0",
"ordinal-suffix": "0.0.1",
"outdatedbrowser": "^1.1.5",
"parse-form": "^4.0.5",
"path-to-regexp": "^2.1.0",
"pluralize": "^7.0.0",
"pretty-bytes": "^4.0.2",
"q-set": "^2.0.8",
"qs": "^6.5.1",
"raj": "^1.0.0",
"request": "^2.88.0",
"resolve-from": "^4.0.0",
"scrollreveal": "^4.0.5",
"timeago.js": "^3.0.2",
"twilio": "^3.19.2",
"twitter": "^1.7.1",
"uglifyjs-webpack-plugin": "^1.2.2",
"viperhtml": "^2.17.0",
"webpack": "^4.1.0",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-hot-middleware": "^2.21.2"
},
"engines": {
"node": ">=8.9.0",
"npm": ">=5.5.1"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"bulma": "^0.8.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"node-sass": "^4.11.0",
"pre-commit": "^1.2.2"
}
}