-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"scripts": {
"postinstall": "./scripts/pre-requisties.sh",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "echo \"Error: no test specified\" && exit 0",
"pr": "./scripts/pr.sh",
"rebase": "git pull origin main --rebase",
"review": "npm run rebase && npm run test && npm run pr",
"lint": "prettier --check --plugin-search-dir=. . && eslint . --fix",
"format": "prettier --write --plugin-search-dir=. ."
},
"engines": {
"node": "~18",
"npm": "~10"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.30",
"@tailwindcss/forms": "^0.5.0",
"autoprefixer": "^10.4.4",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.12",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"shiki": "^1.12.1",
"svelte": "^3.44.0",
"tailwindcss": "^3.0.23",
"vite": "^2.9.0"
},
"dependencies": {
"sveltejs-tippy": "^3.0.0"
}
}