forked from okfn/opendatasurvey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 4.35 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "opendatacensus",
"version": "3.0.0-beta",
"private": true,
"author": "Open Knowledge Foundation",
"repository": {
"type": "git",
"url": "https://github.com/okfn/opendatasurvey"
},
"engines": {
"node": "^7.7.0"
},
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.9.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"bcrypt": "^0.8.3",
"bluebird": "^3.4.6",
"body-parser": "^1.12.4",
"commander": "^2.15.1",
"compression": "^1.4.4",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.3.5",
"cookie-session": "^1.2.0",
"cors": "^2.6.1",
"csv": "^1.1.0",
"debug": "^2.6.0",
"disqus-node": "^0.13.0",
"emailjs": "^1.0.8",
"express": "^4.12.4",
"express-session": "^1.11.2",
"express-validator": "^2.13.0",
"git-rev-sync": "^1.8.0",
"i18n-abide": "^0.0.25",
"jquery": "^3.1.0",
"jsonexport": "^1.5.2",
"jszip": "^3.1.3",
"linkifyjs": "^2.0.0-beta.4",
"lodash": "^3.10.0",
"marked": "^0.3.3",
"metalsmith": "^2.3.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-debug": "^1.1.0",
"metalsmith-if": "^0.1.1",
"metalsmith-ignore": "^0.1.2",
"metalsmith-json-to-files": "brew/metalsmith-json-to-files#json-from-metadata",
"metalsmith-layouts": "^1.7.0",
"metalsmith-markdown": "^0.2.1",
"metalsmith-paths": "^3.0.1",
"metalsmith-permalinks": "^0.5.0",
"metalsmith-request": "^2.0.0",
"metalsmith-s3": "github:mwishek/metalsmith-s3#9ee6df8f7a3b0bdedee616e248c5da0c3a0b2116",
"metalsmith-timer": "0.0.2",
"method-override": "^2.3.3",
"moment": "^2.10.3",
"morgan": "^1.5.3",
"nconf": "^0.8.4",
"nunjucks": "^2.5.2",
"passport": "^0.3.2",
"passport-facebook": "^2.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"pg": "^6.1.0",
"raven": "^0.12.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"request": "^2.56.0",
"sequelize": "^3.1.1",
"serve-favicon": "^2.2.1",
"subdomain": "^1.2.0",
"throng": "^4.0.0",
"umzug": "^1.6.0",
"uuid": "^3.0.1",
"validator": "^6.1.0",
"webpack": "^1.13.2",
"xss": "^0.2.13"
},
"devDependencies": {
"babel-jsxgettext": "^0.2.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.1.0",
"command-line-args": "^3.0.5",
"command-line-commands": "^1.0.4",
"command-line-usage": "^4.0.0",
"coveralls": "^2.11.9",
"enzyme": "^2.4.1",
"eslint": "^3.0.1",
"eslint-config-google": "^0.6.0",
"eslint-plugin-react": "^7.9.1",
"gulp": "^3.8.9",
"gulp-concat-po": "^0.1.0",
"gulp-filter": "^4.0.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-ruby-sass": "^2.1.0",
"gulp-util": "^3.0.7",
"gulp-xgettext": "^0.5.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^9.4.2",
"jsdom-global": "^2.0.0",
"jsxgettext": "^0.9.0",
"mocha": "^3.0.2",
"nodemon": "^1.17.4",
"react-addons-test-utils": "^15.3.0",
"rewire": "^2.5.2",
"supertest": "^2.0.0",
"timekeeper": "^1.0.0",
"zombie": "^4.1.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"scripts": {
"entry-admin": "node scripts/entry-admin.js",
"generate_index": "DEBUG=metalsmith-godi-*,metalsmith-timer node index/generate.js",
"generate_index_dev": "DEBUG=metalsmith-godi-*,metalsmith-timer INDEX_DOMAIN_SUFFIX=dev node index/generate.js",
"migrate_users": "node scripts/users.js",
"anonymize_user": "node scripts/anonymize-user.js",
"start": "node server.js",
"start_dev": "INDEX_DOMAIN_SUFFIX=dev nodemon start -e js,jsx,html,json --ignore index/",
"debug": "node-debug debug-server.js --no-preload --hidden='node_modules'",
"test": "NODE_ENV=test ./node_modules/istanbul/lib/cli.js cover -x '**/census/migrations/**' -x '**/scripts/**' ./node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register -R spec tests/ --harmony",
"lint": "eslint census/**/*.js census/**/*.jsx --ignore-pattern '**/census/migrations/**' --ignore-pattern '**/census/locale/**' --quiet || exit 0",
"posttest": "npm run lint",
"dev": "webpack -d --watch --config webpack.config.development.js",
"build": "webpack -p --progress --config webpack.config.production.js",
"postinstall": "npm run build"
}
}