-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.79 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.79 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
{
"name": "reactivity",
"version": "0.2.0",
"description": "A Bleeding Edge React Universal Boilerplate for Power Users.",
"main": "index.js",
"repository": "https://github.com/madeagency/reactivity.git",
"private": true,
"author": "Made Code",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^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-react-constant-elements": "^7.0.0",
"@babel/plugin-transform-react-inline-elements": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.1.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-universal-import": "^3.0.1",
"babel-watch": "^2.0.7",
"css-loader": "^1.0.0",
"dotenv-webpack": "^1.5.7",
"empty": "^0.10.1",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"extract-css-chunks-webpack-plugin": "^3.1.1",
"file-loader": "^2.0.0",
"flow-bin": "^0.80.0",
"node-sass": "^4.9.3",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"stylelint": "^9.5.0",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-standard": "^18.2.0",
"url-loader": "^1.1.1",
"webpack": "^4.17.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.2.0",
"webpack-hot-middleware": "^2.23.0",
"webpack-hot-server-middleware": "^0.5.0",
"write-file-webpack-plugin": "^4.3.2"
},
"dependencies": {
"compression": "^1.7.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"http-proxy": "^1.17.0",
"isomorphic-fetch": "^2.2.1",
"lru-memoize": "^1.0.2",
"postcss-loader": "^3.0.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.3.5",
"react-redux": "^5.0.7",
"react-redux-epic": "^1.1.0",
"react-router-dom": "^4.3.1",
"react-universal-component": "^3.0.0",
"redux": "^4.0.0",
"redux-form": "^7.3.0",
"redux-observable": "^0.18.0",
"rxjs": "^5.5.10",
"serialize-javascript": "^1.5.0",
"serviceworker-webpack-plugin": "^1.0.1",
"webpack-flush-chunks": "^2.0.1"
},
"scripts": {
"start": "node bin/server.prod.js",
"prod": "npm run build && node bin/server.prod.js",
"dev": "node bin/server.dev.js",
"prebuild": "rimraf build",
"build": "npm run build:client && npm run build:server",
"build:client": "webpack --progress -p --config webpack/client.prod.js",
"build:server": "webpack --progress --config webpack/server.prod.js",
"clean": "rimraf buildClient buildServer",
"format": "prettier --write \"src/**/*.js\"",
"eslint": "eslint -c .eslintrc src",
"stylelint": "stylelint \"src/**/*.scss\" --config .stylelintrc",
"lint": "npm run eslint && npm run stylelint",
"test": "npm run lint && npm run flow:status",
"flow:start": "flow start",
"flow:stop": "flow stop",
"flow:status": "flow status",
"flow:coverage": "flow coverage"
}
}