-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.21 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
{
"name": "ubooru",
"version": "0.0.1",
"scripts": {
"dev": "svelte-kit dev",
"build": "NODE_ENV=production VITE_NODE_ENV=production svelte-kit build && prisma migrate deploy",
"package": "svelte-kit package",
"preview": "svelte-kit preview",
"serve": "NODE_ENV=production VITE_NODE_ENV=production node ./build",
"prepare": "svelte-kit sync",
"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=. ."
},
"devDependencies": {
"@sveltejs/adapter-auto": "next",
"@sveltejs/adapter-node": "^1.0.0-next.73",
"@sveltejs/kit": "next",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@types/async": "^3.2.12",
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.180",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"autoprefixer": "^10.4.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.2.1",
"postcss": "^8.4.12",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.0",
"svelte": "^3.44.0",
"svelte-check": "^2.2.6",
"svelte-loading-spinners": "^0.1.7",
"svelte-preprocess": "^4.10.1",
"tailwindcss": "^3.0.23",
"tslib": "^2.3.1",
"typescript": "~4.6.2"
},
"type": "module",
"dependencies": {
"@prisma/client": "^3.12.0",
"@trpc/client": "^9.20.3",
"@trpc/server": "^9.20.3",
"async": "^3.2.3",
"bcrypt": "^5.0.1",
"classnames": "^2.3.1",
"cookie": "^0.4.2",
"decimal.js": "^10.3.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"prisma": "^3.12.0",
"superjson": "^1.8.1",
"svelte-file-dropzone": "^1.0.0-dev.1",
"svelte-waypoint": "^0.1.4",
"trpc-sveltekit": "^1.1.10",
"zod": "^3.14.3"
},
"description": "Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).",
"main": "svelte.config.js",
"keywords": [],
"author": "",
"license": "ISC"
}