-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.16 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "sd-browser",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"start": "node -r dotenv/config build",
"start:pm2": "pm2 startOrReload ecosystem.config.cjs",
"stop:pm2": "pm2 delete ecosystem.config.cjs",
"dev": "cross-env LOCAL_DATA=./devLocalData IMG_FOLDER=./devImages vite dev",
"ddev": "npm run dev -- --host",
"setup": "npm i && npm run build",
"prod": "npm i && npm run build && npm start",
"deploy": "npm run fetch && npm run prod",
"fetch": "git fetch --all && git reset --hard origin/master",
"build": "vite build && npm run build:worker",
"build:worker": "node scripts/build-extradata-worker.mjs",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"test:models": "node --experimental-strip-types scripts/model-parser.test.ts",
"test:exploration": "node --experimental-strip-types scripts/exploration.unique.test.ts",
"test:searching": "node --experimental-strip-types scripts/searching.test.ts",
"test:similarity-sort": "node --experimental-strip-types scripts/similaritySort.test.ts",
"test:mmr": "node --experimental-strip-types scripts/mmr.test.ts",
"test:imgsim": "node --experimental-strip-types scripts/imgsim.test.ts"
},
"dependencies": {
"better-sqlite3": "^11.0.0",
"dotenv": "^16.3.1",
"exifr": "^7.1.3",
"lodash": "^4.17.21",
"sharp": "^0.35.1",
"sqlite-vec": "^0.1.9",
"svelte-loading-spinners": "^0.3.4",
"uuid": "^9.0.1",
"watcher": "^2.2.2"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-node": "^1.3.0",
"@sveltejs/kit": "^1.20.4",
"@types/better-sqlite3": "^7.6.10",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.2",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"cross-env": "^10.1.0",
"esbuild": "^0.25.0",
"eslint": "^8.28.0",
"eslint-plugin-svelte": "^2.30.0",
"sass": "^1.80.4",
"svelte": "^4.0.0",
"svelte-check": "^3.4.3",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.3.6"
}
}