-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 2.71 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "a1liu",
"type": "module",
"scripts": {
"dev": "vite dev --port 1337",
"build:path-helper": "go build -ldflags '-s -w' -o config/local/path/a1liu_path_helper a1liu.com/src/tools/pathHelper",
"build": "vite build",
"package": "vite package",
"preview": "vite preview",
"check": "svelte-check --tsconfig .svelte-kit/tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig .svelte-kit/tsconfig.json --watch",
"format": "prettier --no-color --write --plugin-search-dir=. \"{src/routes,src/svelte,src/ts,apps}/**/*.{ts,svelte,js}\"",
"clean": "rm -rf .svelte-kit .out"
},
"dependencies": {
"@tanstack/react-query": "4.24.10",
"idb-keyval": "6.2.0",
"immer": "^9.0.21",
"isomorphic-fetch": "^3.0.0",
"json-stable-stringify": "^1.0.2",
"lodash": "4.17.21",
"lowdb": "^5.1.0",
"node-fetch": "^3.3.1",
"preact": "^10.13.2",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"zod": "3.21.4",
"zustand": "^4.3.6"
},
"devDependencies": {
"@sveltejs/adapter-static": "^1.0.0",
"@sveltejs/kit": "^1.0.0",
"postcss": "8.4.14",
"postcss-custom-media": "8.0.1",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-load-config": "3.1.4",
"postcss-preset-env": "7.0.1",
"prettier": "2.5.1",
"prettier-plugin-svelte": "2.8.1",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-preprocess": "4.10.1",
"tslib": "2.4.1",
"typescript": "4.9.3",
"vite": "^4.0.0",
"watch": "1.0.2"
},
"browserslist": [
"last 2 versions",
"> 0.25%",
"not dead",
"not ie 11",
"not op_mini all"
],
"postcss": {
"plugins": {
"postcss-flexbugs-fixes": {},
"postcss-custom-media": {
"importFrom": "src/svelte/media-queries.css"
},
"postcss-preset-env": {
"autoprefixer": {
"flexbox": "no-2009"
},
"stage": 3,
"features": {
"nesting-rules": true,
"custom-properties": false
}
}
}
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false,
"quoteProps": "consistent",
"semi": true
},
"tsconfig": {
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"paths": {
"$lib": [
"src"
],
"$lib/*": [
"src/*"
],
"@lib": [
"src"
],
"@lib/*": [
"src/*"
]
}
}
}
}