-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 2.17 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
{
"name": "@svelteid/website",
"description": "website for svelte id community",
"version": "1.0.0",
"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}\""
},
"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-yaml": "3.0.0",
"@tailwindcss/typography": "0.2.0",
"autoprefixer": "10.0.1",
"babel-eslint": "10.1.0",
"cssnano": "4.1.10",
"dotenv": "8.2.0",
"eslint": "7.12.1",
"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-headroom": "2.2.1",
"svelte-image": "0.2.7",
"svelte-preprocess": "4.5.2",
"tailwindcss": "1.9.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,svelte}": [
"npm run format",
"npm run lint -- --max-warnings 0"
]
}
}