-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.3 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.3 KB
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
{
"name": "app",
"version": "0.0.1",
"private": true,
"config": {
"sentry_dsn": ""
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"autoprefixer": "^10.4.17",
"components": "github:mustafa0x/components#v1.0.142",
"cssnano": "^6.0.3",
"eslint": "^8.56.0",
"eslint-plugin-svelte": "^2.35.1",
"globals": "^13.24.0",
"idb-keyval": "^6.2.1",
"notifier": "github:mustafa0x/notifier#v1.0.2",
"openai": "^4.27.0",
"postcss": "^8.4.35",
"postcss-nesting": "^12.0.2",
"postcss-pseudo-is": "^0.3.0",
"svelte": "^4.2.10",
"svelte-eslint-parser": "^0.33.1",
"svelte-preprocess": "^5.1.3",
"svelte-preprocess-autoimport": "^0.2.1",
"tailwindcss": "^3.4.1",
"terser": "^5.27.0",
"tinro": "^0.6.12",
"vite": "^5.1.0"
},
"scripts": {
"build": "vite build && node --no-warnings build.js",
"bump": "[ -n \"$(git status --porcelain package.json)\" ] && echo \"commit package.json first\" && exit 1 || VER=$(npm --no-git-tag-version version patch) && git add package.json && git commit --amend --no-edit && git tag -f $VER && echo $VER",
"dev": "vite dev --port ${PORT:-5000}"
},
"browserslist": [
"last 40 chrome version",
"last 35 firefox version",
"last 15 safari version"
],
"type": "module"
}