forked from ctrlplusb/react-universally
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.88 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
{
"name": "react-universally",
"version": "7.0.1",
"description": "A starter kit giving you the minimum requirements for a production ready universal react application.",
"main": "build/server/main.js",
"engines": {
"node": "~6.9.1"
},
"scripts": {
"removetypes": "babel --no-babelrc --plugins 'transform-flow-strip-types' --presets 'react' --out-dir tmp src && copyfiles --up 1 'tmp/**/*.js' src && rimraf tmp",
"typecheck": "flow",
"lint": "eslint src",
"clean": "rimraf build",
"development": "node ./tools/development",
"build": "npm run clean && webpack --config ./tools/webpack/client.config.js && webpack --config ./tools/webpack/universalMiddleware.config.js && webpack --config ./tools/webpack/server.config.js",
"start": "node build/server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctrlplusb/react-universally.git"
},
"keywords": [
"react",
"boilerplate",
"starter kit",
"universal",
"javascript",
"express",
"webpack"
],
"author": "Sean Matheson <sean@ctrlplusb.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ctrlplusb/react-universally/issues"
},
"homepage": "https://github.com/ctrlplusb/react-universally#readme",
"dependencies": {
"app-root-path": "2.0.1",
"code-split-component": "1.0.0",
"compression": "1.6.2",
"express": "4.14.0",
"helmet": "2.3.0",
"hpp": "0.2.1",
"normalize.css": "5.0.0",
"path": "0.12.7",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-helmet": "3.1.0",
"react-router": "4.0.0-alpha.5",
"serialize-javascript": "1.3.0",
"source-map-support": "0.4.5"
},
"devDependencies": {
"assets-webpack-plugin": "3.4.0",
"babel-cli": "6.16.0",
"babel-core": "6.17.0",
"babel-eslint": "7.0.0",
"babel-loader": "6.2.5",
"babel-plugin-transform-class-properties": "6.16.0",
"babel-plugin-transform-es2015-destructuring": "6.16.0",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-preset-latest": "6.16.0",
"babel-preset-react": "6.16.0",
"chokidar": "1.6.1",
"colors": "1.1.2",
"css-loader": "0.25.0",
"dotenv": "2.0.0",
"eslint": "3.8.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-flowtype": "2.20.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.4.1",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "0.9.0",
"flow-bin": "0.33.0",
"json-loader": "0.5.4",
"node-notifier": "4.6.1",
"react-hot-loader": "3.0.0-beta.6",
"regenerator-runtime": "0.9.5",
"rimraf": "2.5.4",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "2.1.0-beta.25",
"webpack-dev-middleware": "1.8.4",
"webpack-hot-middleware": "2.13.0",
"webpack-md5-hash": "0.0.5",
"webpack-node-externals": "1.5.4"
}
}