-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.94 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
{
"name": "vite-app-template",
"author": " Pavel Kuzyakin <pavel@kuzyak.in> (kuzyak.in)",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"stylelint": "npx stylelint \"**/*.+(css|scss)\" --fix",
"preview": "vite preview"
},
"description": "A simple starter template. Vite, Typescript, React Router, Redux Toolkit, Eslint, Stylelint are all included in it.",
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"luxon": "^3.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.2",
"react-redux": "^9.0.4",
"react-router-dom": "^6.20.1"
},
"devDependencies": {
"@types/luxon": "^3.3.7",
"@types/node": "^20.10.4",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"npm": "^10.2.5",
"sass": "^1.69.5",
"stylelint": "^16.0.2",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^35.0.0",
"stylelint-config-standard-scss": "^12.0.0",
"typescript": "^5.2.2",
"vite": "^5.4.8"
},
"license": "MIT",
"keywords": [
"reactjs",
"vitejs",
"typescript",
"redux-toolkit",
"eslint",
"stylelint"
],
"repository": {
"type": "git",
"url": "https://github.com/iposho/vite-app-template.git"
}
}