-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.52 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.52 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
{
"name": "sinicx-template",
"version": "2.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/",
"prepare": "husky"
},
"author": "Mai Nishimura <mai.nishimura@sinicx.com>",
"license": "MIT License",
"reactSnap": {
"puppeteerArgs": [
"--disable-setuid-sandbox",
"--no-sandbox"
],
"concurrency": 1,
"inlineCss": false
},
"volta": {
"node": "22.13.1"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"prettier --write"
],
"**/*.{json,md,yml,yaml,scss,sass}": [
"prettier --write"
]
},
"devDependencies": {
"@rollup/plugin-yaml": "^4.1.2",
"@vitejs/plugin-react": "^4.3.4",
"css-loader": "^6.9.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.2.1",
"react-snap": "^1.23.0",
"sass": "^1.69.7",
"vite": "^6.0.11"
},
"dependencies": {
"@iconify-json/logos": "^1.1.43",
"@iconify/react": "^5.0.1",
"fork-me-on-github": "^1.0.6",
"marked": "^12.0.1",
"marked-katex-extension": "^5.0.1",
"normalize.css": "^8.0.1",
"react": "^16.14.0",
"react-helmet": "^6.1.0",
"react-icons": "^5.0.1",
"react-player": "^2.14.1",
"sharp": "^0.33.2",
"swiper": "^11.0.5",
"uikit": "^3.22.3"
}
}