-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.36 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
{
"name": "@rill/todomvc-example-react",
"description": "Isomorphic TodoMVC example with Rill & React",
"version": "2.0.0",
"author": "Dylan Piercey <[email protected]>",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.2.0",
"@rill/body": "^1.3.0",
"@rill/compress": "^1.0.5",
"@rill/error": "^1.3.3",
"@rill/etag": "^1.1.1",
"@rill/expose": "^1.0.0",
"@rill/fresh": "^1.0.1",
"@rill/helmet": "^1.3.0",
"@rill/logger": "^2.2.1",
"@rill/progress": "^2.0.4",
"@rill/react": "^7.0.0",
"@rill/redirect": "^1.0.0",
"@rill/session": "^10.1.0",
"@rill/static": "^2.1.0",
"@rill/unhandled": "^1.1.0",
"classnames": "^2.2.6",
"cuid": "^2.1.4",
"ms": "^2.1.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"rill": "^7.0.4",
"source-map-support": "^0.5.9",
"todomvc-app-css": "^2.1.2",
"todomvc-common": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"assets-webpack-plugin": "^3.9.7",
"babel-loader": "^8.0.4",
"babel-minify-webpack-plugin": "^0.3.1",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^2.0.0",
"csso-webpack-plugin": "^1.0.0-beta.12",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"husky": "^1.2.0",
"ignore-emit-webpack-plugin": "^1.0.2",
"imagemin-webpack-plugin": "^2.3.0",
"mini-css-extract-plugin": "^0.5.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"pretty-error": "^2.1.1",
"spawn-server-webpack-plugin": "^3.0.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add ./build --all"
}
},
"keywords": [
"isomorphic",
"react",
"rill",
"todo-mvc",
"universal",
"webpack"
],
"license": "MIT",
"main": "build/index.js",
"private": true,
"scripts": {
"build": "webpack --progress --config ./config/prod/webpack.config.js",
"start": "node ./build/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "node ./config/dev/dev-server.js"
}
}