-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.45 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
{
"name": "react-universally-skinny",
"version": "4.0.0",
"description": "A \"when size matters\" adaptation of the react-universally starter kit.",
"main": "build/server/main.js",
"engines": {
"node": "~6.6.0"
},
"scripts": {
"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",
"preact",
"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",
"compression": "1.6.2",
"express": "4.14.0",
"helmet": "2.2.0",
"hpp": "0.2.1",
"normalize.css": "4.2.0",
"path": "0.12.7",
"preact": "6.2.1",
"preact-compat": "3.6.0",
"react-helmet": "3.1.0",
"react-router": "2.8.1",
"serialize-javascript": "1.3.0",
"source-map-support": "0.4.3"
},
"devDependencies": {
"assets-webpack-plugin": "3.4.0",
"babel-cli": "6.16.0",
"babel-core": "6.16.0",
"babel-eslint": "7.0.0",
"babel-loader": "6.2.5",
"babel-preset-latest": "6.16.0",
"babel-preset-react": "6.16.0",
"chokidar": "1.6.0",
"colors": "1.1.2",
"css-loader": "0.25.0",
"dotenv": "2.0.0",
"eslint": "3.6.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-flow-vars": "0.5.0",
"eslint-plugin-import": "2.0.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"eslint-plugin-react": "6.3.0",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "0.9.0",
"flow-bin": "0.32.0",
"json-loader": "0.5.4",
"node-notifier": "4.6.1",
"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.3",
"webpack-hot-middleware": "2.12.2",
"webpack-md5-hash": "0.0.5",
"webpack-node-externals": "1.4.3"
}
}