forked from Adashuai5/my-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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": "my-desktop",
"version": "0.3.0",
"private": true,
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"serve": "vite preview",
"lint:style": "stylelint --fix \"src/**/*.scss\" --syntax scss",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier -c --write \"src/**/*\"",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx",
"preinstall": "npx only-allow pnpm"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{scss}": "pnpm run lint:style",
"**/*.{js,jsx,ts,tsx}": "pnpm run lint-staged:js",
"**/*.{js,jsx,tsx,ts,scss,md,json}": [
"pnpm run prettier"
]
},
"dependencies": {
"dayjs": "^1.10.5",
"lodash": "^4.17.21",
"mobx": "^6.3.2",
"mobx-react": "^7.2.0",
"react": "^17.0.0",
"react-desktop": "^0.3.9",
"react-dom": "^17.0.0",
"react-transition-group": "^4.4.2"
},
"devDependencies": {
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-transition-group": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@vitejs/plugin-react": "^1.0.8",
"eslint": "^7.27.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.7.1",
"sass": "^1.34.0",
"stylelint": "^13.13.1",
"stylelint-config-recess-order": "^2.4.0",
"stylelint-config-standard": "^22.0.0",
"typescript": "^4.1.2",
"vite": "^2.6.14",
"vite-plugin-imagemin": "^0.6.1"
},
"resolutions": {
"bin-wrapper": "npm:bin-wrapper-china"
}
}