-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
{
"name": "revite",
"version": "0.0.0",
"engines": {
"node": ">=14.18.1",
"pnpm": ">=6.19.1"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"preinstall": "npx only-allow pnpm",
"check-format": "prettier --check .",
"check-eslint": "eslint . --ext ts --ext tsx --ext js --cache",
"check-stylelint": "stylelint \"**/*.css\"",
"check-types": "tsc --pretty --noEmit --incremental",
"check-all": "pnpm format && pnpm check-format && pnpm check-lint && pnpm check-types",
"format": "prettier --write .",
"prepare": "husky install",
"pre-commit": "lint-staged",
"cert": "rm -rf .cert && mkdir -p .cert && mkcert -key-file ./.cert/key.pem -cert-file ./.cert/cert.pem 'localhost'"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"@vitejs/plugin-react": "^1.0.6",
"autoprefixer": "^10.3.7",
"eslint": "^8.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"stylelint": "^14.0.1",
"stylelint-config-standard": "^23.0.0",
"tailwindcss": "^2.2.17",
"typescript": "^4.4.4",
"vite": "^2.6.13"
}
}