-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "website_shoko",
"module": "index.ts",
"type": "module",
"license": "UNLICENSED",
"author": {
"name": "Serreau Jovann",
"email": "[email protected]",
"url": "https://www.shoko-cosplay.fr"
},
"scripts": {
"lint": "prettier-standard --lint \"assets/**/*.{js,css,jsx}\"",
"lint-staged": "prettier-standard --lint --changed \"assets/**/*.{js,css,jsx}\"",
"dev": "rm -rf public/assets/time && npx vite",
"build": "npx vite build && touch public/assets/time && find ./public/assets -name \"*.*\" -mtime +7 -delete",
"test": "vitest"
},
"devDependencies": {
"@preact/preset-vite": "^2.8.2",
"doctoc": "^2.0.1",
"eslint-config-preact": "^1.5.0",
"prettier": "^3.2.5",
"prettier-standard": "^16.4.1",
"sass": "^1.77.2",
"vite": "^5.2.0",
"vitest": "^2.1.2"
},
"dependencies": {
"@grafikart/spinning-dots-element": "^1.1.0",
"@sentry/browser": "^8.53.0",
"body-scroll-lock": "^3.1.5",
"canvas-confetti": "^1.3.2",
"chart.js": "^4.3.0",
"clsx": "^1.2.1",
"codemirror": "^5.59.0",
"favicon-badge": "^2.0.0",
"flatpickr": "^4.6.9",
"headless-elements": "^0.0.2",
"htm": "^3.0.4",
"markdown-to-jsx": "7.4.0",
"mermaid": "^10.9.1",
"preact": "^10.22.0",
"react-diff-viewer": "^3.1.1",
"scriptjs": "^2.5.9",
"sortablejs": "^1.10.2",
"swiper": "^11.2.2",
"tom-select": "^1.7.5",
"turbolinks": "^5.2.0"
},
"eslintConfig": {
"extends": "preact",
"rules": {
"react/jsx-fragments": 0,
"import/no-absolute-path": 0
},
"env": {
"browser": true
}
}
}