-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.51 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.51 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "unicourse-realm",
"version": "1.0.0-dev.7",
"type": "module",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"dev": "vite dev",
"build": "vite build && tsup && cp -r build/client/. dist/client/",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --ignore-path .gitignore --check **/*.{ts,js,json,yaml,yml,svelte,html,css} && eslint .",
"format": "prettier --ignore-path .gitignore --write **/*.{ts,js,json,yaml,yml,svelte,html,css}",
"cypher": "node scripts/run-cypher.js",
"build:docker": "docker buildx bake --set '*.platform=linux/arm64/v8,linux/amd64' --push"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@iconify/svelte": "^3.1.0",
"@neoconfetti/svelte": "^1.0.0",
"@paralleldrive/cuid2": "^2.0.1",
"@playwright/test": "^1.30.0",
"@sveltejs/adapter-node": "^1.1.8",
"@sveltejs/kit": "^1.5.5",
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/cookie": "^0.5.1",
"@types/debug": "^4.1.7",
"@types/jsonwebtoken": "^9.0.1",
"@types/pangu": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@unicourse-tw/validation": "1.0.0-alpha.14",
"autoprefixer": "^10.4.13",
"course-pack": "1.0.0-alpha.15",
"daisyui": "^2.50.0",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"jsonwebtoken": "^9.0.0",
"lint-staged": "^13.1.1",
"neo4j-driver": "^5.5.0",
"neo4j-ogm": "1.0.0-dev.2",
"pangu": "^4.0.7",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"prettier-plugin-tailwindcss": "^0.2.2",
"reconnecting-eventsource": "^1.6.2",
"svelte": "^3.55.1",
"svelte-check": "^3.0.3",
"svelte-i18n": "^3.6.0",
"tailwindcss": "^3.2.6",
"tslib": "^2.5.0",
"tsup": "^6.6.2",
"typescript": "^4.9.5",
"unicourse": "1.0.0-alpha.15",
"vite": "^4.1.1",
"vitest": "^0.28.4",
"zod": "^3.20.6",
"zod-validation-error": "^0.3.1"
},
"lint-staged": {
"*.{ts,js,json,yaml,yml,svelte,html,css}": [
"prettier --write"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.321.1",
"argon2": "^0.30.3",
"mock-aws-s3": "^4.0.2",
"nock": "^13.3.0"
}
}