-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.67 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
{
"name": "react-typescript-mobx-ssr",
"description": "This project is boilerplate for starting a new a app via CRA (create react app) with SSR (server side rendering) support and some other modern useful stuff",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/RomanLubushkin/react-typescript-mobx-ssr"
},
"bugs": {
"url": "https://github.com/RomanLubushkin/react-typescript-mobx-ssr/issues"
},
"keywords": [
"react",
"typescript",
"mobx",
"server-side-rendering",
"create-react-app",
"express",
"react-router",
"react-helmet",
"react-loadable",
"styled-components",
"hydrate",
"react-styleguidist",
"boilerplate",
"recipe"
],
"dependencies": {
"@types/express": "^4.16.1",
"@types/i18next": "^12.1.0",
"@types/jest": "24.0.11",
"@types/node": "11.13.2",
"@types/react": "16.8.13",
"@types/react-dom": "16.8.3",
"@types/react-helmet": "^5.0.8",
"@types/react-i18next": "^8.1.0",
"@types/react-router": "^4.4.5",
"@types/react-router-dom": "^4.3.1",
"@types/styled-components": "^4.1.14",
"@types/webpack-env": "^1.13.9",
"cookie-parser": "^1.4.4",
"express": "^4.16.4",
"i18next": "^15.0.9",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"mobx-react-devtools": "^6.1.1",
"mobx-react-router": "^4.0.7",
"morgan": "^1.9.1",
"react": "^16.8.6",
"react-docgen-typescript": "^1.12.3",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"react-i18next": "^10.7.0",
"react-loadable": "^5.5.0",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.8",
"react-styleguidist": "^9.0.7",
"styled-components": "^4.2.0",
"svg-inline-loader": "^0.8.0",
"ts-loader": "^5.3.3",
"typescript": "3.4.2",
"url-loader": "^1.1.2"
},
"scripts": {
"start:client": "react-scripts start",
"start:server": "node dist/server.js",
"start:docs": "npx styleguidist server",
"build:client": "react-scripts build",
"build:server": "yarn webpack --config server.config.js --mode production",
"build:docs": "npx styleguidist build",
"build": "yarn build:client && yarn build:server",
"restart:server": "yarn build:client && yarn build:server && yarn start:server",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"webpack-cli": "^3.3.0"
},
"author": "Roman Lubushkin <ra.lubushkin@gmail.com> (https://github.com/RomanLubushkin)",
"license": "MIT"
}