This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.74 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
{
"name": "odict-web",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"postinstall": "prisma generate",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"db:up": "docker run --name odict-pg -p 5555:5432 -e POSTGRES_DATABASE=odict -e POSTGRES_USER=odict -e POSTGRES_PASSWORD=password -d postgres",
"db:down": "docker rm -f odict-pg",
"migrate": "dotenv -- bazel run //tools/migrator"
},
"prisma": {
"seed": "node --loader ts-node/esm prisma/seed.ts"
},
"devDependencies": {
"@playwright/test": "^1.25.2",
"@sveltejs/adapter-auto": "^1.0.0-next.75",
"@sveltejs/kit": "^1.0.0-next.484",
"@types/he": "^1",
"@types/lodash-es": "^4",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"autoprefixer": "^10.4.11",
"cssnano": "^5.1.13",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.16",
"postcss-load-config": "^4.0.1",
"prettier": "~2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"prisma": "latest",
"svelte": "^3.50.1",
"svelte-check": "^2.9.0",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.3",
"vite": "^3.1.1"
},
"type": "module",
"dependencies": {
"@prisma/client": "latest",
"@types/node": "^18.7.18",
"dotenv-cli": "^6.0.0",
"fast-xml-parser": "^4.0.10",
"he": "^1.2.0",
"lodash-es": "^4.17.21"
}
}