This repository has been archived by the owner on Apr 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
121 lines (121 loc) · 4.36 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
{
"name": "ims",
"version": "1.0.0",
"description": "An image management system for your static assets",
"scripts": {
"start": "WEBPACK_DEV_SERVER=1 node bin/serve.js",
"json-check": "json-check '*.json' 'isomorphic/**/*.json'",
"eslint": "eslint . .storybook --cache --cache-location node_modules/.cache/eslint --ignore-path .gitignore",
"stylelint": "stylelint '**/*.css' --cache --cache-location node_modules/.cache/stylelint --ignore-path .gitignore",
"migrate": "node server/psql/migrate",
"reset-db": "node server/psql/reset-db",
"test": "npm run reset-db && npm run test:server && npm run test:jsdom",
"test:jsdom": "jest --config jest.jsdom.json",
"test:server": "jest --config jest.server.json",
"storybook": "start-storybook -p 3692",
"build-storybook": "build-storybook",
"dev-server": "WEBPACK_DEV_SERVER=1 npx webpack-dev-server --config webpack.development.js --hot --port 3691",
"build": "npx webpack --config webpack.production.js --hide-modules",
"build-watch": "WEBPACK_WATCH=1 npx webpack --config webpack.production.js --hide-modules --watch",
"monitors": "dsc-monitor 'tests/monitors/**/*.js'",
"automation": "dsc-e2e 'tests/automation/**/*.js'",
"delete-source-maps": "rm dist/*.map",
"heroku-postbuild": "npm run build && npm run build-storybook"
},
"author": "Jonathan Ong <[email protected]> (http://jongleberry.com)",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"debug": "^3.1.0",
"fs-cp": "^1.4.0",
"jstransformer-uglify-js": "^1.2.0",
"koa": "^2.5.0",
"koa-body-parsers": "^3.1.0",
"koa-compose": "^4.0.0",
"koa-compress": "^3.0.0",
"koa-conditional-get": "^2.0.0",
"koa-etag": "^3.0.0",
"koa-favicon": "^2.0.1",
"koa-json": "^2.0.2",
"koa-mount": "^3.0.0",
"koa-path-match": "^2.0.0",
"koa-response-time": "^2.0.0",
"koa-static": "^4.0.2",
"lodash": "^4.17.5",
"mime-types": "^2.1.18",
"mz": "^2.7.0",
"pg": "^7.4.1",
"pug": "^2.0.3",
"rollbar": "^2.3.9",
"sharp": "^0.20.1",
"statuses": "^1.5.0",
"stoppable": "^1.0.5",
"temp-path": "^1.0.0"
},
"devDependencies": {
"@dollarshaveclub/e2e": "^1.1.3",
"@dollarshaveclub/monitor": "^1.7.3",
"@jongleberry/json-check": "^1.0.0",
"@storybook/addon-a11y": "^4.0.0-alpha.2",
"@storybook/addon-actions": "^4.0.0-alpha.2",
"@storybook/addon-links": "^4.0.0-alpha.2",
"@storybook/addon-storyshots": "^4.0.0-alpha.2",
"@storybook/react": "^4.0.0-alpha.2",
"@storybook/storybook-deployer": "^2.3.0",
"aws-sdk": "^2.217.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"classnames": "^2.2.5",
"concurrency-logger": "^2.1.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"http-errors": "^1.6.3",
"jest": "^22.4.3",
"jest-css-modules": "^1.1.0",
"jest-fetch-mock": "^1.5.0",
"mini-css-extract-plugin": "^0.4.0",
"prop-types": "^15.6.1",
"query-string": "^6.0.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-hot-loader": "^4.0.0",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^16.3.0",
"redux": "^4.0.0",
"request": "^2.85.0",
"style-loader": "^0.21.0",
"stylelint": "^9.1.3",
"stylelint-config-css-modules": "^1.2.0",
"stylelint-config-standard": "^18.2.0",
"supertest": "^3.0.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1",
"webpack-manifest-plugin": "^2.0.0-rc.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"engines": {
"node": "^8.11.1",
"npm": "^5.7.1"
}
}