-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.16 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
{
"name": "react-ssr-example",
"version": "1.0.0",
"description": "An example of React server side rendering powered by Risen.JS",
"main": "index.js",
"scripts": {
"test": "yarn test",
"build": "webpack",
"start": "NODE_ENV=development webpack && NODE_ENV=development node src/server/index.js",
"format": "prettier --config ./.prettierrc --write './**/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daviemakz/react-clustered-ssr.git"
},
"keywords": [
"react",
"server",
"side",
"rendering",
"risenjs",
"risen",
"js",
"multi",
"threaded"
],
"author": "David Makuni",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/daviemakz/react-clustered-ssr/issues"
},
"homepage": "https://github.com/daviemakz/react-clustered-ssr#readme",
"dependencies": {
"antd": "^3.19.2",
"express": "^4.17.1",
"lru-cache": "^5.1.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"risen-js": "^1.1.7"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.1",
"babel-preset-react-app": "^3.0.1",
"babel-runtime": "^6.26.0",
"css-loader": "^0.28.4",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-google": "^0.13.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.2",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-standard": "^4.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^0.11.2",
"node-loader": "^0.6.0",
"postcss-loader": "^2.0.6",
"prettier": "^1.13.7",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"request": "^2.88.0",
"rimraf": "^2.6.3",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
}
}