-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.69 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
{
"@std/esm": {
"esm": "js"
},
"main": "./src/server/index.js",
"name": "boilerplate-nutella",
"version": "1.0.0",
"description": "SSR plus Webpack ready.",
"scripts": {
"start": "razzle start",
"build": "razzle build",
"start:prod": "cross-env NODE_ENV=production node build/server.js",
"production": "yarn run build && yarn run start:prod",
"lint": "eslint common server client --ignore-pattern __tests__",
"test": "cross-env NODE_ENV=test jest"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@std/esm": "0.17.3",
"axios": "0.19.0",
"body-parser": "1.18.2",
"classnames": "2.2.5",
"cookies": "0.7.1",
"cookies-js": "1.2.3",
"cross-env": "5.1.3",
"dotenv": "4.0.0",
"express": "4.16.2",
"prop-types": "15.7.2",
"razzle": "3.0.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-helmet-async": "1.0.4",
"react-loadable": "5.5.0",
"react-redux": "7.1.3",
"react-router": "5.1.2",
"react-router-config": "5.1.1",
"react-router-dom": "5.1.2",
"redux": "4.0.4",
"redux-cookies": "1.0.1",
"redux-thunk": "2.2.0",
"revalidator": "0.3.1",
"sweetalert2": "7.9.2",
"winston": "2.4.0"
},
"devDependencies": {
"autoprefixer": "7.2.2",
"babel-eslint": "10.0.1",
"css-loader": "1.0.0",
"eslint": "6.6.0",
"eslint-loader": "1.9.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.5.1",
"extract-css-chunks-webpack-plugin": "3.2.0",
"jest": "23.6.0",
"jsdom": "11.2.0",
"node-sass": "4.7.2",
"nyc": "11.2.1",
"postcss-loader": "3.0.0",
"sass-loader": "7.1.0"
}
}