-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.19 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
{
"name": "@rill/todomvc-example-svelte",
"description": "Isomorphic TodoMVC example with Rill & Svelte",
"version": "1.0.0",
"author": "Dylan Piercey <pierceydylan@gmail.com>",
"dependencies": {
"@rill/body": "^1.3.0",
"@rill/compress": "^1.0.4",
"@rill/error": "^1.3.3",
"@rill/etag": "^1.1.1",
"@rill/expose": "^1.0.0",
"@rill/fresh": "^1.0.0",
"@rill/helmet": "^1.1.0",
"@rill/logger": "^2.1.1",
"@rill/page": "^3.0.1",
"@rill/polyfill": "^1.2.0",
"@rill/progress": "^2.0.3",
"@rill/redirect": "^1.0.0",
"@rill/session": "^10.0.0",
"@rill/static": "^2.1.0",
"@rill/svelte": "^1.0.0",
"@rill/unhandled": "^1.1.0",
"babel-runtime": "^6.26.0",
"classnames": "^2.2.5",
"cuid": "^1.3.8",
"ms": "^2.0.0",
"rill": "^7.0.0",
"source-map-support": "^0.5.0",
"svelte": "^1.41.3",
"todomvc-app-css": "^2.1.0",
"todomvc-common": "^1.0.3"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babili-webpack-plugin": "^0.1.2",
"compression-webpack-plugin": "^1.0.1",
"css-loader": "^0.28.4",
"csso-webpack-plugin": "^1.0.0-beta.10",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"friendly-errors-webpack-plugin": "^1.6.1",
"husky": "^0.14.1",
"ignore-emit-webpack-plugin": "^0.2.1",
"imagemin-webpack-plugin": "^1.4.4",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"pretty-error": "^2.1.0",
"spawn-server-webpack-plugin": "^2.0.5",
"svelte-loader": "^2.1.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"keywords": [
"isomorphic",
"rill",
"svelte",
"todo-mvc",
"universal",
"webpack"
],
"license": "MIT",
"main": "build/index.js",
"private": true,
"scripts": {
"build": "webpack --progress --config ./config/prod/webpack.config.js",
"precommit": "npm run build && git add ./build --all",
"start": "node ./build/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "node ./config/dev/dev-server.js"
}
}