-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.4 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
{
"name": "getbookmarklets",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "run-s 'migrate up' build:vite",
"build:vite": "vite build",
"migrate": "node-pg-migrate --template-file-name 'migrations/template/template.cjs'",
"create:permission": "node ./src/scripts/create_permission.js",
"create:crudPermissions": "node ./src/scripts/create_crudPermissions.js",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"test": "npm run test:unit",
"test:full": "run-s test:build test:integration test:unit",
"test:build": "run-s 'migrate redo 9999 --envPath ./.env.test' 'build:vite --mode test'",
"test:integration": "playwright test -c ./playwright.config.full.js",
"test:unit": "vitest"
},
"devDependencies": {
"@playwright/test": "^1.43.1",
"@sveltejs/adapter-auto": "^3.2.0",
"@sveltejs/kit": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"dotenv": "^16.4.5",
"highlight.js": "^11.9.0",
"monaco-editor": "^0.46.0",
"node-pg-migrate": "^6.2.2",
"npm-run-all": "^4.1.5",
"svelte": "5.0.0-next.123",
"svelte-check": "^3.7.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vitest": "^1.5.3"
},
"type": "module",
"dependencies": {
"argon2": "^0.31.2",
"js-beautify": "^1.15.1",
"pg": "^8.11.5"
}
}