-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 949 Bytes
/
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
{
"name": "vite-svelte-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "vite",
"compile": "cross-env NODE_ENV=production vite build",
"check": "svelte-check --human && tsc --noEmit",
"watch:svelte": "svelte-check --human --watch",
"watch:ts": "tsc --noEmit --watch",
"start": "run-p watch:* dev",
"build": "run-s check compile",
"serve": "sirv dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@svitejs/vite-plugin-svelte": "^0.10.0",
"@tsconfig/svelte": "^1.0.10",
"autoprefixer": "^10.2.5",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.8",
"postcss-load-config": "^3.0.1",
"sirv-cli": "^1.0.11",
"svelte": "^3.35.0",
"svelte-check": "^1.2.3",
"svelte-preprocess": "^4.6.9",
"tailwindcss": "^2.0.3",
"typescript": "^4.2.3",
"vite": "^2.0.5"
}
}