forked from krotkiewicz/svelte-todomvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.51 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
{
"name": "svelte-todomvc",
"version": "1.0.0",
"description": "TodoMVC implemented in Svelte",
"scripts": {
"copyfiles": "mkdir -p dist && cp node_modules/todomvc-app-css/index.css public/todomvc-app-css.css && cp node_modules/todomvc-common/base.css public/todomvc-common.css && cp node_modules/todomvc-common/base.js public/todomvc-common.js",
"build": "npm run copyfiles && rollup -c",
"dev": "npm run copyfiles && rollup -cw",
"deploy": "surge public svelte-todomvc.surge.sh",
"predeploy": "npm run build",
"start": "http-server public & npm run dev & open http://localhost:8080"
},
"files": [
"index.html",
"public",
"node_modules/todomvc-app-css/index.css"
],
"repository": {
"type": "git",
"url": "https://github.com/sveltejs/svelte-todomvc.git"
},
"keywords": [
"svelte",
"todomvc"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
"url": "https://github.com/sveltejs/svelte-todomvc/issues"
},
"homepage": "https://github.com/sveltejs/svelte-todomvc",
"dependencies": {
"todomvc-app-css": "2.2.0",
"todomvc-common": "^1.0.5"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.8.5",
"rollup": "^1.7.3",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^4.0.4",
"surge": "^0.20.1",
"svelte": "^3.0.0-beta.20"
},
"engines": {
"node": "10.x"
}
}