forked from streetmix/streetmix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.11 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "streetmix",
"version": "1.3.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/codeforamerica/streetmix.git"
},
"license": "BSD-3-Clause",
"engines": {
"node": "6.2.2",
"npm": "3.10.2"
},
"scripts": {
"prestart": "mongod --fork --logpath /dev/null",
"start": "supervisor index.js",
"stop": "mongo admin --eval 'db.shutdownServer()'",
"pretest": "mongod --fork --logpath /dev/null",
"test": "node test/index | tap-spec && grunt test:local",
"posttest": "mongo admin --eval 'db.shutdownServer()'",
"lint": "npm run lint-css && npm run lint-js",
"lint-css": "sass-lint --config .sass-lint.yml --verbose",
"lint-js": "standard --verbose | snazzy",
"translationsDownload": "node bin/download_translations.js"
},
"dependencies": {
"async": "1.5.2",
"autoprefixer": "6.3.6",
"babel-polyfill": "6.9.1",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"babelify": "7.3.0",
"body-parser": "1.15.2",
"browserify": "13.0.1",
"browserify-middleware": "7.0.0",
"browserify-shim": "3.8.12",
"btoa": "1.1.2",
"compression": "1.6.2",
"config": "1.21.0",
"cookie-parser": "1.4.3",
"cookie-session": "2.0.0-alpha.1",
"dateformat": "1.0.12",
"envify": "3.4.1",
"express": "4.14.0",
"gulp-if": "2.0.1",
"gulp-plumber": "1.1.0",
"gulp-postcss": "6.1.1",
"gulp-sass": "2.3.2",
"gulp-sourcemaps": "1.6.0",
"gulp-tap": "0.1.3",
"handjs": "1.3.11",
"i18next": "3.3.1",
"i18next-xhr-backend": "0.6.0",
"jade": "1.11.0",
"jquery": "3.0.0",
"js-cookie": "2.1.2",
"kerberos": "0.0.21",
"lodash": "4.13.1",
"moment": "2.13.0",
"mongoose": "4.5.2",
"newrelic": "1.28.1",
"node-env-file": "0.1.8",
"node-sass": "3.8.0",
"oauth": "0.9.14",
"postcss": "5.0.21",
"raven-js": "3.1.1",
"react": "15.3.0",
"react-dom": "15.3.0",
"request": "2.72.0",
"requireindex": "1.1.0",
"sendgrid": "2.0.0",
"sprintf": "0.1.5",
"streetmix-icons": "git://github.com/streetmix/icons.git#0.4.0",
"streetmix-illustrations": "git://github.com/streetmix/illustrations.git",
"superagent": "2.0.0",
"supervisor": "0.11.0",
"twitter": "1.3.0",
"uuid": "2.0.2",
"validator": "5.4.0",
"vinyl-fs": "2.4.3",
"whatwg-fetch": "1.0.0",
"winston": "2.2.0"
},
"devDependencies": {
"eslint": "2.13.1",
"grunt": "1.0.1",
"grunt-env": "0.4.4",
"grunt-express": "1.4.1",
"grunt-protractor-runner": "3.2.0",
"grunt-shell": "1.3.0",
"load-grunt-tasks": "3.5.0",
"proxyquire": "1.7.9",
"sass-lint": "1.8.2",
"snazzy": "4.0.0",
"standard": "7.1.2",
"standard-react": "2.1.0",
"supertest": "1.2.0",
"tap-spec": "4.1.1",
"tape": "4.6.0",
"tape-catch": "1.0.6"
},
"standard": {
"ignore": [
"assets/scripts/vendor/",
"test/integration/smoke.spec.js"
]
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"./assets/scripts/vendor/FileSaver.js": "saveAs"
}
}