-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.55 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
{
"name": "react-iso",
"version": "1.0.3",
"description": "A boilerplate for react project, with latest packages",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js,.jsx src",
"dev": "webpack-dev-server --config webpack.config.dev.js",
"start": "webpack-dev-server --config webpack.config.dev.js --https --cert temp/file.crt --key temp/private.pem",
"build": "webpack --config webpack.config.dev.js",
"buildseo": "webpack --config webpack.config.seo.js",
"seo": "node ./cli/ssr",
"bundle": "webpack --config webpack.config.dev.js",
"test": "jest"
},
"author": "Len",
"license": "ISC",
"dependencies": {
"animated": "^0.2.0",
"prop-types": "^15.5.7-alpha.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-dom-animated": "^1.0.3",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-transition-group": "^1.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "^4.0.0",
"babel-preset-stage-0": "^6.24.1",
"bundle-loader": "^0.5.5",
"css-loader": "^0.28.5",
"eslint": "^4.5.0",
"eslint-config-fbjs": "^2.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-html": "^3.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-relay": "0.0.19",
"eslint-plugin-standard": "^3.0.1",
"express": "^5.0.0-alpha.3",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"http2": "^3.3.6",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"react-hot-loader": "next",
"react-test-renderer": "^16.0.0-beta.5",
"spdy": "^3.4.7",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"jest": {
"setupFiles": [
"./jest/setup.js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
]
},
"repository": {
"type": "https",
"url": "https://github.com/12d/react-iso.git"
},
"keywords": [
"react",
"server-render",
"ssr",
"redux",
"webpack"
]
}