-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "system3-website",
"private": true,
"version": "0.0.1",
"scripts": {
"build": "pnpm -F www build",
"dev": "pnpm -F www dev",
"preview": "pnpm -F www preview",
"test": "pnpm -F www test",
"check": "pnpm -F www check",
"check:watch": "pnpm -F www check:watch",
"test:unit": "pnpm -F www test:unit",
"lint": "prettier --check . && eslint .",
"format:check": "pnpm -r format:check",
"format": "prettier --write .",
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm -r sync"
},
"engines": {
"pnpm": ">=8",
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/no-instructions/system3-website.git"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@antfu/eslint-config": "^2.11.6",
"eslint": "^8.57.0",
"eslint-plugin-antfu": "^2.1.2",
"eslint-plugin-svelte": "2.36.0-next.13",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.12",
"pretty-quick": "^4.0.0",
"simple-git-hooks": "^2.10.0",
"svelte": "^4.2.12",
"svelte-eslint-parser": "^0.33.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm -r format:staged --staged"
},
"dependencies": {
"bits-ui": "0.21.4"
}
}