-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "stts",
"version": "1.0.0",
"description": "Svelte/Typescript/Tailwind/Snowpack template",
"main": "index.js",
"scripts": {
"dev": "snowpack dev",
"test": "jest",
"test:watch": "jest --watchAll",
"check": "svelte-check --diagnostic-sources \"js,svelte\"",
"check:watch": "svelte-check --watch --diagnostic-sources \"js,svelte\"",
"build": "npm test && npm run check && snowpack build",
"serve": "sirv build --maxage 36000"
},
"keywords": [
"svelte",
"typescript",
"tailwind",
"snowpack",
"template"
],
"author": "Sean Mullen",
"license": "ISC",
"devDependencies": {
"@snowpack/plugin-svelte": "^3.7.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/plugin-webpack": "^3.0.0",
"@testing-library/svelte": "^3.0.3",
"@tsconfig/svelte": "^2.0.1",
"@types/jest": "^27.0.2",
"@types/snowpack-env": "^2.3.4",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.3.1",
"jest": "^27.3.1",
"postcss": "^8.3.11",
"snowpack": "^3.8.8",
"svelte": "^3.44.1",
"svelte-check": "^2.2.8",
"svelte-jester": "^2.1.5",
"svelte-preprocess": "^4.9.8",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"sirv-cli": "^1.0.14",
"tailwindcss": "^2.2.19"
}
}