-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.59 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.59 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": "react-pure-ssr",
"version": "0.0.1",
"description": "react ssr examples without framework",
"main": "dist/server.js",
"author": "dylanju",
"license": "ISC",
"keywords": [
"ssr",
"server-side-rendering",
"react",
"typescript",
"react-router",
"react-router-dom"
],
"homepage": "https://github.com/DylanJu/react-pure-ssr",
"repository": {
"type": "git",
"url": "https://github.com/DylanJu/react-pure-ssr.git"
},
"scripts": {
"start": "yarn build:dev && node ./dist/server.js",
"start:wds": "webpack-dev-server --env=dev --profile --colors",
"build": "rm -rf dist/ && NODE_ENV=production yarn build:client && NODE_ENV=production yarn build:server",
"build:dev": "rm -rf dist/ && NODE_ENV=development yarn build:client && NODE_ENV=development yarn build:server",
"build:server": "webpack --env=server --progress --profile --colors",
"build:client": "webpack --env=client --progress --profile --colors",
"test": "jest --watchAll"
},
"dependencies": {
"@loadable/component": "^5.12.0",
"@loadable/server": "^5.12.0",
"express": "^4.17.1",
"moment": "^2.24.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.0.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"styled-components": "^5.0.0",
"styled-normalize": "^8.0.6",
"typescript": "^3.7.5"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.8.3",
"@loadable/babel-plugin": "^5.12.0",
"@loadable/webpack-plugin": "^5.12.0",
"@types/express": "^4.17.1",
"@types/jest": "^25.1.0",
"@types/loadable__component": "^5.10.0",
"@types/loadable__server": "^5.9.1",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.9",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/redux": "^3.6.0",
"@types/styled-components": "^5.1.0",
"@types/webpack-dev-middleware": "^3.7.0",
"@types/webpack-env": "^1.14.0",
"@types/webpack-hot-middleware": "^2.16.5",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"add": "^2.0.6",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"core-js": "2",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jest-dom": "^2.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^3.0.0",
"html-webpack-plugin": "^4.2.0",
"jest": "^25.1.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"prettier": "^2.0.4",
"sass-loader": "^8.0.2",
"stylelint": "^13.0.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.9.0",
"ts-loader": "^7.0.0",
"typescript-plugin-styled-components": "^1.4.4",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-middleware": "^3.7.1",
"webpack-dev-server": "^3.8.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-node-externals": "^1.7.2",
"yarn": "^1.22.4"
}
}