-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "svelte-todomvc",
"version": "1.0.0",
"description": "TodoMVC implemented in Svelte",
"scripts": {
"copyfiles": "cp -r node_modules/todomvc-common public/todomvc-common",
"build": "vite build",
"dev": "vite dev",
"deploy": "surge dist svelte-todomvc.surge.sh",
"predeploy": "npm run build",
"start": "npm run build && vite preview"
},
"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.4.2",
"todomvc-common": "^1.0.5"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.6",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"surge": "^0.23.1",
"svelte": "^4.2.1",
"vite": "^4.4.9"
},
"type": "module"
}