-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.65 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.65 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
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-ssr",
"version": "1.0.0",
"description": "react-ssr",
"main": "dist/server/server.js",
"scripts": {
"dev": "yarn compiler & yarn server",
"dev:inspect": "yarn compiler & yarn server:inspect",
"start": "npx nodemon ./dist/server/server.js",
"compiler": "npx webpack --config ./webpack/dev",
"server": "npx nodemon ./dist/server/server.js",
"server:inspect": "npx nodemon --inspect ./dist/server/server.js",
"build": "npx webpack --config ./webpack/prod",
"build:analyze": "npx webpack --config ./webpack/prod/analyze.js",
"lint": "npx eslint \"src/**/*.{js,ts,tsx}\" --fix && npx prettier --write \"src/**/*.{css,html}\"",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx,js,css,md}": [
"yarn lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/77xi/react-ssr.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/77xi/react-ssr/issues"
},
"homepage": "https://github.com/77xi/react-ssr#readme",
"devDependencies": {
"@0x0006e/babel-preset-react": "^1.0.4",
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@types/app-root-dir": "^0.1.0",
"@types/jest": "^24.0.18",
"@types/koa": "^2.0.49",
"@types/koa-static": "^4.0.1",
"@types/lodash": "^4.14.137",
"@types/node": "^12.7.2",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.2",
"@types/react-router-config": "^5.0.0",
"@types/react-router-dom": "^4.3.5",
"@types/react-test-renderer": "^16.9.0",
"@types/serialize-javascript": "^1.5.0",
"@types/webpack": "^4.39.0",
"@types/webpack-env": "^1.14.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.16.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-typescript": "^0.14.0",
"file-loader": "^5.1.0",
"fork-ts-checker-webpack-plugin": "^4.0.5",
"husky": "^3.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"lint-staged": "^9.2.1",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path": "^0.12.7",
"prettier": "^1.18.2",
"react-test-renderer": "^16.9.0",
"redux-devtools-extension": "^2.13.8",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"typescript": "^3.5.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.1.0",
"webpack": "^4.39.1",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0",
"webpack-manifest-plugin": "^2.0.4",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"app-root-dir": "^1.0.2",
"koa": "^2.7.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.15",
"nodemon": "^1.19.1",
"react": "^16.13.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.0",
"react-router-config": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.3",
"serialize-javascript": "^3.1.0"
},
"engines": {
"node": ">=8"
}
}