-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
121 lines (121 loc) · 4.24 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": "react-ssr-starter",
"version": "1.0.0",
"description": "All have been introduced React environment",
"bugs": {
"url": "https://github.com/osamu38/react-ssr-starter/issues"
},
"license": "MIT",
"author": "osamu38",
"main": "index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/osamu38/react-ssr-starter.git"
},
"scripts": {
"build": "npm run build:client && npm run build:server",
"build:analyze": "npm run build:client:analyze & npm run build:server:analyze",
"build:client": "NODE_ENV=production webpack --progress --env --config ./tools/webpack/webpack.client.babel.js",
"build:client:analyze": "NODE_ENV=production webpack --progress --env.analyze --config ./tools/webpack/webpack.client.babel.js",
"build:server": "NODE_ENV=production webpack --progress --env --config ./tools/webpack/webpack.server.babel.js",
"build:server:analyze": "NODE_ENV=production webpack --progress --env.analyze --config ./tools/webpack/webpack.server.babel.js",
"lint": "eslint . --fix",
"lint:css": "stylelint './src/**/*.js'",
"dev": "nodemon index",
"start": "NODE_ENV=production node index",
"storybook": "start-storybook -s ./public -p 2626 -c ./tools/storybook",
"test": "NODE_ENV=test jest",
"test:update": "npm test -- -u",
"test:coverage": "npm test -- --coverage",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"@loadable/component": "^5.13.1",
"@loadable/server": "^5.13.1",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"express": "^5.0.0-alpha.7",
"helmet": "^3.23.3",
"hpp": "^0.2.3",
"html-minifier": "^4.0.0",
"morgan": "^1.10.0",
"path-to-regexp": "^3.1.0",
"preact": "^10.4.5",
"query-string": "^6.13.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet-async": "^1.0.6",
"react-redux": "5.1.1",
"react-router-config": "5.1.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"serialize-javascript": "^4.0.0",
"serve-favicon": "^2.5.0",
"styled-components": "^4.4.1",
"styled-reset": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.4",
"@loadable/babel-plugin": "^5.13.0",
"@loadable/webpack-plugin": "^5.13.0",
"@storybook/addon-links": "^5.3.19",
"@storybook/react": "^5.3.19",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"clean-webpack-plugin": "1.0.1",
"copy-webpack-plugin": "^5.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.6",
"friendly-errors-webpack-plugin": "^1.7.0",
"jest": "^26.1.0",
"jest-styled-components": "^7.0.2",
"json-loader": "^0.5.7",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"raf": "^3.4.1",
"react-hot-loader": "^4.12.21",
"redux-logger": "^3.0.6",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"terser-webpack-plugin": "^3.0.6",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-node-externals": "^1.7.2",
"workbox-sw": "^5.1.3",
"workbox-webpack-plugin": "^5.1.3"
},
"engines": {
"node": "12.14.1",
"npm": "6.13.4"
}
}