-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
55 lines (55 loc) · 1.71 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
{
"name": "boilerplate-2021",
"version": "1.0.0",
"description": "Yet another boilerplate for TypeScript and React developers.",
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.js",
"author": "Henry Li <[email protected]>",
"repository": {
"url": "https://github.com/magiccube/boilerplate-2021"
},
"license": "MIT",
"scripts": {
"build": "npm run build:vite",
"build:es": "tsc",
"build:gh-pages": "npm run build:vite",
"build:vite": "vite build",
"deploy": "npm run build:gh-pages && echo && echo 'Publishing GitHub pages...' && gh-pages -d dist",
"dev": "vite",
"start": "npm run dev",
"prepare": "husky install",
"preview": "vite preview"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.1-alpha-67f38366a-20210830",
"gh-pages": "^3.2.3",
"husky": "^7.0.2",
"less": "^4.1.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"typescript": "^4.4.0",
"vite": "^2.5.2",
"vite-plugin-linter": "^0.2.3",
"vite-react-jsx": "^1.1.2"
},
"dependencies": {
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}