-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.76 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
{
"name": "react-ssr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.10.1",
"axios": "^0.19.2",
"fs-extra": "^9.0.0",
"glob": "^7.1.6",
"history": "^4.10.1",
"init": "^0.1.2",
"js-yaml": "^3.13.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-nunjucks-2": "^3.0.2",
"koa-router": "^8.0.8",
"koa-static": "^5.0.0",
"nodemon": "^2.0.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"workbox-routing": "^5.1.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx-source": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/runtime-corejs2": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-jsx-control-statements": "^4.1.0",
"babel-plugin-transform-promise-to-bluebird": "^2.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"benchmark": "^2.1.4",
"body-parser": "^1.19.0",
"css-loader": "^3.5.3",
"dot-tpl-loader": "^1.2.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"extract-loader": "^5.0.1",
"file-loader": "^6.0.0",
"happypack": "^5.0.1",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"html-webpack-tags-plugin": "^2.0.17",
"ignore-loader": "^0.1.2",
"less-loader": "^6.1.0",
"mini-css-extract-plugin": "^0.9.0",
"nunjucks-loader": "^3.0.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"webpack": "^4.43.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"workbox-webpack-plugin": "^5.1.3"
},
"scripts": {
"start": "npm run server & npm run dev",
"server": "node script/dev-server.js",
"dev": "node script/dev-client.js",
"lint": "eslint . --fix --format codeframe",
"build": "node script/build.js"
},
"author": "",
"license": "ISC"
}