forked from tmea-tlip/www.tlip.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.62 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
{
"name": "www.tlip.io",
"version": "0.0.1",
"description": "TLIP web site",
"keywords": [
"tlip",
"api"
],
"authors": [
"Martyn Janes <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/tmea-tlip/www.tlip.io.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=14",
"npm": ">=7"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. .",
"prepare": "husky install"
},
"devDependencies": {
"@sveltejs/adapter-vercel": "^1.0.0",
"@sveltejs/kit": "1.15.1",
"@tailwindcss/forms": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.14",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-unicorn": "^45.0.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.20",
"postcss-load-config": "^4.0.1",
"postcss-nested": "^6.0.0",
"prettier": "^2.8.1",
"prettier-plugin-svelte": "^2.9.0",
"rimraf": "^3.0.2",
"sass": "^1.57.1",
"stylelint": "^14.16.1",
"stylelint-config-property-sort-order-smacss": "^9.0.0",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard": "^29.0.0",
"stylelint-scss": "^4.3.0",
"svelte": "^3.55.0",
"svelte-check": "^3.0.1",
"svelte-preprocess": "^5.0.0",
"tailwindcss": "^3.2.4",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.4"
},
"type": "module",
"dependencies": {
"googleapis": "^110.0.0",
"marked": "^4.2.5",
"pino": "^8.14.1",
"swiper": "^8.4.5",
"url-metadata": "^2.5.0",
"vite-plugin-markdown": "^2.1.0"
},
"lint-staged": {
"**/*.{js,ts,svelte,scss}": [
"npx prettier --write"
]
}
}