-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
156 lines (156 loc) · 5.65 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "shoutit-web",
"version": "0.0.1",
"description": "Shoutit web app",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://bitbucket.org/shoutitcom/shoutit_webapp.git"
},
"scripts": {
"start": "NODE_ENV=production node built/index.js",
"prebuild": "rimraf built",
"build": "npm run build:server && npm run build:client && npm run build:copy_assets && npm run build:copy_styles",
"build:server": "babel index.js app.js newrelic.js -d built && babel app -d built/app && cp -R env built/env",
"build:vendors": "NODE_ENV=production webpack -p --config=webpack.config.vendors.js --progress --bail",
"build:vendors:dev": "NODE_ENV=development webpack -d --config=webpack.config.vendors.js",
"build:client": "npm run build:vendors && NODE_ENV=production webpack -p --bail --progress",
"build:client:profile": "NODE_ENV=production webpack -p --profile --json > stats.json",
"build:translations": "babel-node ./scripts/translations.js",
"build:copy_styles": "find app -name '*.scss' | cpio -pdm ./built",
"build:copy_assets": "cp -r assets built/assets",
"dev": "REDIS_PORT=tcp://localhost:6379 NODE_ENV=development nodemon index.js --exec babel-node",
"dev:debug": "npm run dev -- --debug",
"dev:built": "redis-server & NODE_ENV=production npm start",
"lint": "eslint app",
"test": "npm run test:unit",
"test:karma": "karma start --reporters mocha",
"test:karma:watch": "karma start --auto-watch --no-single-run",
"test:karma:cover": "karma start --reporters mocha --reporters coverage",
"test:unit": "mocha --reporter mocha-circleci-reporter --require ./test/setup.js --compilers js:babel-register --recursive app/**/*.test.js",
"test:watch": "npm run test:unit -- --watch",
"test:single": "mocha --reporter mocha-circleci-reporter --require ./test/setup.js --compilers js:babel-register --recursive --watch",
"test:cover": "babel-node ./node_modules/istanbul/lib/cli cover -- _mocha --reporter mocha-circleci-reporter --require ./test/setup.js --compilers js:babel-register --recursive app/**/*.test.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@economist/component-stickyfill": "1.1.1",
"aws-sdk": "2.5.3",
"babel-polyfill": "6.13.0",
"basic-auth": "1.0.4",
"body-parser": "1.15.2",
"bootstrap-sass": "3.3.7",
"classnames": "https://registry.npmjs.org/classnames/-/classnames-2.2.5.tgz",
"compression": "1.6.2",
"connect-redis": "3.1.0",
"cookie-parser": "1.4.3",
"csurf": "1.9.0",
"debug": "2.2.0",
"denormalizr": "0.3.2",
"dotenv": "4.0.0",
"express": "4.14.0",
"express-domain-middleware": "0.1.0",
"express-session": "1.14.1",
"fetchr": "0.5.33",
"gm": "1.23.0",
"history": "1.17.0",
"humps": "1.1.0",
"ignore-styles": "5.0.1",
"intl": "1.2.4",
"intl-locales-supported": "1.0.0",
"ismobilejs": "0.4.0",
"lodash": "4.15.0",
"mixpanel": "0.7.0",
"mobile-detect": "1.3.6",
"morgan": "1.7.0",
"multer": "1.2.0",
"newrelic": "1.30.0",
"normalizr": "2.2.1",
"pusher-js": "3.2.1",
"query-string": "4.2.3",
"raven": "2.1.1",
"react": "15.3.1",
"react-addons-css-transition-group": "15.3.1",
"react-avatar-editor": "4.1.3",
"react-bootstrap": "0.29.5",
"react-dom": "15.3.1",
"react-dropzone": "3.5.3",
"react-helmet": "3.1.0",
"react-intl": "2.1.4",
"react-overlays": "0.6.6",
"react-redux": "4.4.5",
"react-router": "2.6.1",
"react-router-bootstrap": "0.23.0",
"react-router-redux": "4.0.5",
"react-share": "1.9.0",
"react-textarea-autosize": "4.0.4",
"redux": "3.5.2",
"redux-thunk": "2.1.0",
"sass-mediaqueries": "1.6.1",
"scroll-behavior": "0.4.0",
"serialize-javascript": "1.3.0",
"serve-favicon": "2.3.0",
"serve-static": "1.11.1",
"superagent": "2.2.0",
"unix-timestamp": "0.2.0",
"uuid": "2.0.2",
"webrtcsupport": "2.2.0"
},
"devDependencies": {
"autoprefixer": "6.4.0",
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.5",
"babel-plugin-react-intl": "2.1.4",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-1": "6.13.0",
"babel-register": "6.14.0",
"chai": "3.5.0",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.23.1",
"eslint": "3.4.0",
"eslint-config-airbnb": "10.0.1",
"eslint-plugin-import": "1.14.0",
"eslint-plugin-jsx-a11y": "2.2.0",
"eslint-plugin-react": "6.1.2",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"glob": "7.0.6",
"istanbul": "1.0.0-alpha.2",
"istanbul-instrumenter-loader": "0.2.0",
"jsdom": "8.5.0",
"json-loader": "0.5.4",
"mkdirp": "0.5.1",
"mocha": "3.0.2",
"mocha-circleci-reporter": "0.0.2",
"node-sass": "4.5.3",
"nodemon": "1.10.2",
"path-exists": "3.0.0",
"postcss-loader": "0.10.1",
"pre-commit": "1.1.3",
"react-addons-test-utils": "15.3.1",
"react-intl-loader": "1.0.2",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.4",
"redbox-react": "1.3.0",
"rimraf": "2.5.4",
"rtl-css-loader": "1.0.1",
"sass-loader": "4.0.0",
"sinon": "1.17.5",
"sinon-chai": "2.8.0",
"skin-deep": "0.16.0",
"style-loader": "0.13.1",
"webpack": "1.13.2",
"webpack-bundle-size-analyzer": "2.0.2",
"webpack-dev-middleware": "1.6.1",
"webpack-error-notification": "0.1.6",
"webpack-hot-middleware": "2.12.2",
"webpack-rtl-plugin": "1.4.2",
"webpack-stats-plugin": "0.1.3"
},
"pre-commit": []
}