-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 2.07 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
{
"name": "@lomray/vite-template",
"version": "0.0.1",
"type": "module",
"scripts": {
"develop": "ssr-boost dev",
"build": "ssr-boost build",
"build:spa": "ssr-boost build --only-client",
"build:amplify": "ssr-boost build-amplify --is-optimize",
"build:vercel": "ssr-boost build-vercel --is-optimize",
"start:ssr": "ssr-boost start",
"start:spa": "ssr-boost start --only-client",
"preview": "ssr-boost preview",
"lint:check": "eslint \"src/**/*.{ts,tsx,*.ts,*tsx}\"",
"lint:format": "eslint --fix \"src/**/*.{ts,tsx,*.ts,*tsx}\"",
"style:check": "stylelint \"src/**/*.{css,scss}\"",
"style:format": "stylelint --fix \"src/**/*.{css,scss}\"",
"ts:check": "tsc --project ./tsconfig.json --skipLibCheck --noemit",
"prepare": "husky"
},
"dependencies": {
"@lomray/consistent-suspense": "^2.0.5",
"@lomray/react-head-manager": "^2.1.0",
"@lomray/react-mobx-manager": "^4.0.0",
"@lomray/react-route-manager": "^2.0.0",
"@lomray/vite-ssr-boost": "^3.1.0",
"axios": "^1.7.7",
"classnames": "^2.5.1",
"cookie-parser": "^1.4.6",
"isbot": "^5.1.17",
"js-cookie": "^3.0.5",
"mobx": "^6.13.3",
"mobx-react-lite": "^4.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-loading-skeleton": "^3.5.0",
"react-router-dom": "^6.26.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@lomray/eslint-config-react": "^5.0.6",
"@lomray/prettier-config": "^2.0.1",
"@lomray/stylelint-config": "^2.0.1",
"@semantic-release/exec": "^6.0.3",
"@types/cookie-parser": "^1.4.7",
"@types/js-cookie": "^3.0.6",
"@types/node": "20.10.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"sass": "^1.78.0",
"semantic-release": "^24.1.2",
"stylelint": "^16.9.0",
"typescript": "^5.3.3",
"vite": "^5.4.8",
"vite-bundle-visualizer": "^1.2.1"
}
}