forked from EthanThatOneKid/acmcsuf.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.23 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
69
70
71
72
73
74
75
76
77
{
"name": "acmcsuf.com",
"version": "4.0.0",
"private": true,
"homepage": "https://acmcsuf.com/",
"author": {
"name": "EthanThatOneKid",
"url": "https://etok.codes/"
},
"repository": {
"url": "https://github.com/EthanThatOneKid/acmcsuf.com.git/"
},
"scripts": {
"start": "npm run dev",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "vitest --run",
"test:watch": "vitest",
"test:size": "npm i && size-limit",
"test:coverage": "vitest run --coverage",
"test:browser": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --compiler-warnings \"css-unused-selector:ignore,unused-export-let:error\"",
"lint": "eslint . --fix",
"format": "prettier --write .",
"host": "npm run all && npm run preview",
"all": "npm run lint && npm run format && npm run check && npm run build && npm t"
},
"devDependencies": {
"@playwright/test": "^1.30.0",
"@size-limit/file": "^8.2.4",
"@sveltejs/adapter-netlify": "next",
"@sveltejs/kit": "^1.14.0",
"@types/cropperjs": "^1.3.0",
"@types/html-to-text": "^9.0.0",
"@types/qrcode": "^1.5.0",
"@types/rss": "^0.0.30",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vitest/coverage-c8": "^0.28.5",
"devalue": "^4.3.0",
"dotenv": "^16.0.3",
"esbuild": "^0.17.8",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"sass": "^1.58.1",
"size-limit": "^8.2.4",
"svelte": "^3.57.0",
"svelte-check": "^3.1.4",
"svelte-preprocess": "^5.0.3",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
},
"size-limit": [
{
"path": "node_modules",
"limit": "256 MB"
}
],
"type": "module",
"dependencies": {
"@googleapis/calendar": "^3.0.0",
"@js-temporal/polyfill": "^0.4.3",
"cropperjs": "^1.5.13",
"html-to-text": "^9.0.4",
"pomo": "github:ethanthatonekid/pomo#npm",
"qrcode": "^1.5.1",
"rrule": "^2.7.2",
"rss": "^1.2.2",
"svelte-confetti": "^1.2.2",
"svelte-meta-tags": "^2.6.5"
}
}