forked from streetmix/streetmix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.2 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.2 KB
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
{
"name": "streetmix",
"version": "1.3.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/streetmix/streetmix.git"
},
"license": "BSD-3-Clause",
"engines": {
"node": "6.9.4",
"npm": "4.1.2"
},
"scripts": {
"prestart": "mongod --fork --logpath /dev/null",
"start": "supervisor -e node,js,jsx index.js",
"stop": "mongo admin --eval 'db.shutdownServer()'",
"pretest": "mongod --fork --logpath /dev/null",
"test": "node test/index | tap-spec && grunt test:local:setup && 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": "eslint \"**/*.js\" \"**/*.jsx\"",
"translationsDownload": "node bin/download_translations.js"
},
"dependencies": {
"async": "2.1.5",
"autoprefixer": "6.7.6",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0",
"babelify": "7.3.0",
"body-parser": "1.17.1",
"browserify": "14.1.0",
"browserify-middleware": "7.1.0",
"btoa": "1.1.2",
"compression": "1.6.2",
"config": "1.25.1",
"cookie-parser": "1.4.3",
"cookie-session": "2.0.0-beta.1",
"dateformat": "2.0.0",
"envify": "4.0.0",
"express": "4.14.1",
"file-saver": "1.3.3",
"gulp-if": "2.0.2",
"gulp-plumber": "1.1.0",
"gulp-postcss": "6.3.0",
"gulp-sass": "3.1.0",
"gulp-sourcemaps": "latest",
"gulp-tap": "0.1.3",
"handjs": "1.3.11",
"i18next": "latest",
"i18next-xhr-backend": "latest",
"jade": "1.11.0",
"js-cookie": "2.1.3",
"kerberos": "0.0.23",
"lodash": "4.17.4",
"moment": "2.17.1",
"mongoose": "4.8.5",
"newrelic": "1.37.2",
"node-env-file": "0.1.8",
"node-sass": "4.5.0",
"oauth": "0.9.15",
"postcss": "5.2.16",
"raven-js": "3.12.1",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-redux": "5.0.3",
"redux": "3.6.0",
"request": "2.79.0",
"requireindex": "1.1.0",
"sendgrid": "2.0.0",
"shifty": "1.5.4",
"sprintf": "0.1.5",
"streetmix-icons": "git://github.com/streetmix/icons.git#v0.4.2",
"streetmix-illustrations": "git://github.com/streetmix/illustrations.git",
"superagent": "3.5.0",
"supervisor": "0.12.0",
"twitter": "1.7.0",
"uuid": "3.0.1",
"validator": "7.0.0",
"vinyl-fs": "2.4.4",
"whatwg-fetch": "2.0.2",
"winston": "2.3.1"
},
"devDependencies": {
"eslint": "3.16.1",
"eslint-config-standard": "7.0.0",
"eslint-config-standard-react": "4.3.0",
"eslint-plugin-promise": "latest",
"eslint-plugin-react": "6.10.0",
"eslint-plugin-standard": "2.0.1",
"grunt": "1.0.1",
"grunt-env": "0.4.4",
"grunt-express": "1.4.1",
"grunt-protractor-runner": "4.0.0",
"grunt-shell": "2.1.0",
"load-grunt-tasks": "3.5.2",
"proxyquire": "1.7.11",
"sass-lint": "1.10.2",
"supertest": "3.0.0",
"tap-spec": "4.1.1",
"tape": "4.6.3",
"tape-catch": "1.0.6"
},
"greenkeeper": {
"ignore": [
"sendgrid",
"you-want-me-to-ignore"
]
}
}