bw-hspc-contest-env/web/package.json

58 lines
1.6 KiB
JSON
Raw Normal View History

2023-04-26 12:20:01 -04:00
{
"name": "bw-hspc-contest-web",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
2023-08-26 10:48:43 -04:00
"build": "svelte-kit sync && prisma generate && vite build",
2023-04-26 12:20:01 -04:00
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
2023-08-23 22:06:53 -04:00
"lint": "prettier --plugin prettier-plugin-svelte --check . && eslint .",
"format": "prettier --plugin prettier-plugin-svelte --write ."
2023-04-26 12:20:01 -04:00
},
"devDependencies": {
2024-03-14 10:51:28 -04:00
"@sveltejs/kit": "^2.5.4",
2024-02-26 14:35:18 -05:00
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@types/bcrypt": "^5.0.2",
2023-12-19 16:49:17 -05:00
"@types/bootstrap": "^5.2.10",
"@types/diff": "^5.0.9",
"@types/js-cookie": "^3.0.6",
2024-03-20 09:32:20 -04:00
"@types/node": "^20.11.30",
2024-02-26 14:35:18 -05:00
"@types/uuid": "^9.0.8",
2024-03-20 09:32:20 -04:00
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
2024-02-26 14:35:18 -05:00
"eslint": "^8.57.0",
2023-12-19 16:49:17 -05:00
"eslint-config-prettier": "^9.1.0",
2024-02-26 14:35:18 -05:00
"prettier": "^3.2.5",
2024-03-11 13:35:23 -04:00
"prettier-plugin-svelte": "^3.2.2",
2024-03-14 10:51:28 -04:00
"sass": "^1.72.0",
2024-02-26 14:35:18 -05:00
"svelte": "^4.2.12",
2024-03-20 09:32:20 -04:00
"svelte-check": "^3.6.8",
2023-08-23 22:06:53 -04:00
"tslib": "^2.6.2",
2024-03-11 13:35:23 -04:00
"typescript": "^5.4.2",
2024-03-20 09:32:20 -04:00
"vite": "^5.2.2"
2023-04-26 12:20:01 -04:00
},
"type": "module",
"dependencies": {
2024-03-12 12:53:08 -04:00
"@prisma/client": "^5.11.0",
2024-03-11 13:35:23 -04:00
"@sveltejs/adapter-node": "^5.0.1",
"@types/fs-extra": "^11.0.4",
2023-08-26 11:07:09 -04:00
"bcrypt": "^5.1.1",
2024-02-26 14:35:18 -05:00
"bootstrap": "^5.3.3",
2024-01-15 15:31:18 -05:00
"bootstrap-icons": "^1.11.3",
"bwcontest-shared": "file:../shared",
2024-02-26 14:35:18 -05:00
"diff": "^5.2.0",
2024-01-15 15:31:18 -05:00
"diff2html": "^3.4.47",
2023-12-19 16:49:17 -05:00
"eslint-plugin-svelte": "^2.35.1",
"fs-extra": "^11.2.0",
2024-02-26 14:35:18 -05:00
"isomorphic-git": "^1.25.6",
2023-08-26 11:41:37 -04:00
"js-cookie": "^3.0.5",
2024-03-20 09:32:20 -04:00
"memfs": "^4.8.0",
2023-05-01 13:26:49 -04:00
"node-git-server": "^1.0.0",
2024-03-12 12:53:08 -04:00
"prisma": "^5.11.0",
2023-10-02 13:25:07 -04:00
"uuid": "^9.0.1",
2023-10-15 14:17:45 -04:00
"zod": "^3.22.4"
2023-04-26 12:20:01 -04:00
}
}