-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
166 lines (166 loc) · 5.62 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
157
158
159
160
161
162
163
164
165
166
{
"name": "redux-starter",
"version": "0.0.1",
"description": "Browser-based video editor. Add graphics, animated text, and music to any video asset.",
"main": "index.js",
"scripts": {
"build": "webpack --config ./webpack/prod.config.babel.js",
"buildstaging": "API_ENV=staging webpack --config ./webpack/prod.config.babel.js",
"dev": "API_ENV=development NODE_ENV=development node index",
"staging": "PORT=3000 HOST=172.17.0.1 pm2-runtime start ecosystem.config.js",
"prod": "PORT=3000 HOST=172.17.0.1 pm2-runtime start ecosystem.config.js --env production",
"debug": "NODE_ENV=development node --nolazy --inspect-brk=9229 index",
"postinstall": "npm run build",
"lint": "eslint app config tests webpack",
"lintfix": "eslint app config tests webpack --fix",
"test": "NODE_ENV=test nyc mocha tests/* --recursive --compilers js:@babel/register --require ./tests/tests-config.js",
"cover": "NODE_ENV=test nyc mocha tests/* --recursive --compilers js:@babel/register --require ./tests/tests-config.js",
"docker": "docker-compose build --no-cache; docker-compose up",
"start": "NODE_ENV=production node index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mwelche/redux-starter.git"
},
"keywords": [
"redux",
"isomorphic",
"universal",
"react",
"flux"
],
"author": "Mathieu Welche",
"contributors": [
{
"name": "Mathieu Welche (https://github.com/mwelche)",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/mwelche/redux-starter/issues"
},
"homepage": "https://github.com/mwelche/redux-starter#readme",
"devDependencies": {
"babel-plugin-istanbul": "^5.1.4",
"chai": "4.1.2",
"chai-enzyme": "1.0.0-beta.1",
"chai-immutable": "1.5.4",
"enzyme": "3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "7.8.2",
"eslint-plugin-security": "^1.4.0",
"mocha": "5.2.0",
"nyc": "^14.1.1",
"react-hot-loader": "^4.1.2",
"redux-mock-store": "^1.5.3",
"supertest": "3.1.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14",
"webpack-error-notification": "0.1.6"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"autoprefixer": "8.5.0",
"babel-eslint": "8.2.3",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-dynamic-import": "^2.0.0",
"clean-webpack-plugin": "^0.1.19",
"compression": "1.7.2",
"cookie-parser": "1.4.3",
"core-js": "^2.5.6",
"css-loader": "^3.0.0",
"css-modules-require-hook": "4.0.0",
"express": "4.16.3",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "1.1.11",
"history": "^3.3.0",
"http-proxy": "^1.13.2",
"immutable": "4.0.0-rc.9",
"json-loader": "^0.5.7",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"mini-css-extract-plugin": "^0.4.0",
"morgan": "^1.9.1",
"postcss": "6.0.22",
"postcss-calc": "^6.0.1",
"postcss-color-function": "^4.0.1",
"postcss-css-variables": "0.8.1",
"postcss-custom-media": "6.0.0",
"postcss-import": "11.1.0",
"postcss-loader": "^3.0.0",
"postcss-modules-extract-imports": "1.1.0",
"postcss-modules-local-by-default": "1.2.0",
"postcss-nesting": "^5.0.0",
"pretty-error": "^2.0.0",
"prop-types": "^15.6.1",
"raf": "^3.4.0",
"raven": "^0.10.0",
"react": "^16.5.2",
"react-cookie": "^1.0.4",
"react-dom": "^16.5.2",
"react-ga": "^2.5.3",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-router": "^3.2.0",
"react-router-redux": "^4.0.0",
"redux": "^4.0.0",
"scroll-behavior": "^0.3.3",
"serialize-javascript": "2.1.1",
"serve-favicon": "^2.5.0",
"serve-static": "^1.14.1",
"style-loader": "0.13.1",
"superagent": "3.8.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "1.0.1",
"webpack": "4.17.1",
"webpack-isomorphic-tools": "2.2.44",
"webpack-stats-plugin": "0.2.1"
},
"engines": {
"node": "10.1.x",
"npm": "6.1.x"
},
"nyc": {
"include": [
"app/**"
],
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": false,
"instrument": false,
"cache": false
}
}