-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (85 loc) · 2.6 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "sapper-tailwindcss-ts-starter",
"description": "Starter template for Sapper + TailwindCSS with TypeScript",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "sapper dev --ext \".svelte .svx\"",
"predev": "npm run build:tw",
"export": "sapper export --legacy --ext \".svelte .svx\"",
"preexport": "NODE_ENV=production npm run build:tw",
"build:tw": "postcss src/styles/global.css -o static/global.css",
"lint": "eslint --fix \"**/*.{js,svelte}\"",
"format": "prettier --write \"./**/*.{js,yaml,svelte}\"",
"validate": "svelte-check --ignore src/node_modules/@sapper"
},
"dependencies": {
"compression": "1.7.4",
"isomorphic-fetch": "3.0.0",
"polka": "next",
"sirv": "1.0.7"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/runtime": "7.12.1",
"@fullhuman/postcss-purgecss": "3.0.0",
"@intrnl/svelte-query": "0.3.1",
"@rollup/plugin-alias": "3.1.1",
"@rollup/plugin-babel": "5.2.1",
"@rollup/plugin-commonjs": "16.0.0",
"@rollup/plugin-node-resolve": "10.0.0",
"@rollup/plugin-replace": "2.3.4",
"@rollup/plugin-typescript": "^6.0.0",
"@rollup/plugin-yaml": "3.0.0",
"@tailwindcss/typography": "0.2.0",
"@tsconfig/svelte": "^1.0.10",
"@types/compression": "^1.7.0",
"@types/node": "^14.11.1",
"@types/polka": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^4.8.0",
"@typescript-eslint/parser": "^4.8.0",
"autoprefixer": "10.0.1",
"babel-eslint": "10.1.0",
"cssnano": "4.1.10",
"dotenv": "8.2.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-svelte3": "2.7.3",
"fuse.js": "6.4.3",
"husky": "4.3.0",
"lint-staged": "10.5.1",
"mdsvex": "0.8.8",
"postcss": "8.1.4",
"postcss-cli": "8.2.0",
"prettier": "2.1.2",
"prettier-plugin-svelte": "1.4.1",
"rollup": "2.33.0",
"rollup-plugin-svelte": "6.1.0",
"rollup-plugin-svelte-svg": "0.2.3",
"rollup-plugin-terser": "7.0.2",
"sapper": "0.28.10",
"svelte": "3.29.4",
"svelte-check": "^1.0.46",
"svelte-headroom": "2.2.1",
"svelte-image": "0.2.7",
"svelte-preprocess": "^4.3.0",
"tailwindcss": "1.9.6",
"tslib": "^2.0.1",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
}
},
"lint-staged": {
"*.{js,svelte}": [
"npm run format",
"npm run lint -- --max-warnings 0"
]
}
}