-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.02 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": "archiv-frontend-kit",
"version": "0.0.1",
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"prepare": "husky install",
"test": "playwright test",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --fix --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
},
"devDependencies": {
"@playwright/test": "^1.32.3",
"@sveltejs/adapter-node": "^1.2.3",
"@sveltejs/kit": "^1.15.7",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^3.4.1",
"husky": "^7.0.4",
"lint-staged": "^12.5.0",
"prettier": "^2.8.7",
"prettier-plugin-svelte": "^2.10.0",
"svelte": "^3.58.0",
"svelte-check": "^2.10.3",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.5.0",
"typescript": "~4.6.4",
"video.js": "^7.21.4",
"vite": "^4.3.1"
},
"type": "module",
"dependencies": {
"@popperjs/core": "^2.11.7",
"@sveltejs/svelte-virtual-list": "^3.0.1",
"bootstrap": "5.3.0-alpha1",
"chart.js": "^3.9.1",
"chartjs-plugin-datalabels": "^2.2.0",
"cookie": "^0.5.0",
"date-fns": "^2.29.3",
"devalue": "^3.1.3",
"sass": "^1.62.0",
"set-cookie-parser": "^2.6.0",
"videojs-seek-buttons": "^2.2.1",
"videojs-thumbnail-sprite": "^0.1.1"
},
"lint-staged": {
"*.{js,svelte}": "eslint --fix --ignore-path .gitignore .",
"*.{js,css,md,svelte,scss}": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
}
}