This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
76 lines (76 loc) · 2.11 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
{
"name": "sapper-tailwindcss",
"description": "",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/EricPKerr/sapper-tailwindcss"
},
"scripts": {
"dev": "sapper dev",
"build": "sapper build --legacy",
"export": "sapper export --legacy",
"start": "node __sapper__/build",
"all": "npm run build && npm run start",
"update": "ncu -u && npm install && git add package.json package-lock.json && git commit -m 'Update package.json'",
"precommit": "node -v && lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,svelte}": [
"eslint"
],
"*.{ts,tsx,js,jsx,json,css,md,svelte}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"polka": "^0.5.2",
"sirv": "^0.4.2"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/runtime": "^7.7.7",
"@fullhuman/postcss-purgecss": "^1.3.0",
"autoprefixer": "^9.7.3",
"classnames": "^2.2.6",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-svelte3": "^2.7.3",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mixin-deep": ">=2.0.1",
"npm-run-all": "^4.1.5",
"postcss-fail-on-warn": "^0.1.0",
"postcss-import": "^12.0.1",
"prettier": "^1.19.1",
"prettier-plugin-svelte": "^0.7.0",
"ramda": "^0.26.1",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-terser": "^5.1.3",
"sapper": "^0.27.11",
"set-value": ">=3.0.1",
"svelte": "^3.16.7",
"svelte-transitions": "^1.2.0",
"tailwindcss": "^1.1.4"
}
}