This repository has been archived by the owner on Feb 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.66 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
{
"name": "@mywiki/web-frontend",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "run-s lint:eslint lint:dprint",
"lint:eslint": "eslint . --ext .js,.jsx,.ts,.tsx --cache",
"lint:dprint": "dprint check --config ./dprint.json",
"fmt": "run-s fmt:eslint fmt:dprint",
"fmt:eslint": "npm run lint:eslint -- --fix",
"fmt:dprint": "dprint fmt --config ./dprint.json",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"dependencies": {
"@emotion/css": "^11.7.1",
"nanoid": "^3.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "6",
"react-use": "^17.3.2",
"swr": "^1.1.2",
"the-new-css-reset": "^1.4.7",
"ulid": "^2.3.0"
},
"devDependencies": {
"@swc/core": "^1.2.133",
"@swc/jest": "^0.2.17",
"@tsconfig/node16": "^1.0.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vitejs/plugin-react": "^1.1.0",
"eslint": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^40.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"typescript": "^4.5.5",
"vite": "^2.6.14",
"vite-tsconfig-paths": "^3.3.17"
}
}