-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.87 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.87 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
{
"name": "academic-project-template",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "vite",
"clean": "rm -rf build/",
"build": "vite build",
"postbuild": "react-snap",
"preview": "vite preview",
"format": "prettier src/ --check",
"format:fix": "prettier -w src/ --check",
"lint": "eslint src/",
"typos": "typos",
"typos:fix": "typos --write-changes",
"prepare": "husky"
},
"author": "denkiwakame <denkivvakame@gmail.com>",
"license": "CC-BY-SA4.0",
"volta": {
"node": "22.13.1"
},
"reactSnap": {
"puppeteerArgs": [
"--disable-setuid-sandbox",
"--no-sandbox"
],
"concurrency": 1,
"inlineCss": false
},
"devDependencies": {
"@rollup/plugin-yaml": "^4.1.2",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^9.1.7",
"js-yaml": "^4.1.0",
"lint-staged": "^15.4.3",
"prettier": "^3.2.1",
"react-snap": "^1.23.0",
"sass": "^1.83.4",
"sharp": "^0.33.2",
"typos-rs-npm": "github:dalisoft/typos-rs-npm",
"vite": "^6.0.11"
},
"dependencies": {
"@iconify-json/logos": "^1.1.43",
"@iconify-json/simple-icons": "^1.1.110",
"@iconify/react": "^5.0.1",
"highlight.js": "^11.11.1",
"img-comparison-slider": "^8.0.6",
"marked": "^13.0.0",
"marked-highlight": "^2.2.1",
"marked-katex-extension": "^5.0.1",
"material-design-color": "^2.3.2",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-icons": "^5.0.1",
"react-player": "^2.14.1",
"swiper": "^11.0.5",
"uikit": "^3.22.3"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"prettier --write"
],
"*.{json,yml,yaml,scss,sass}": [
"prettier --write"
],
"**/*.{js,jsx,yml,yaml,md}": [
"typos"
]
}
}