-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "react-practice",
"version": "0.0.0",
"scripts": {
"dev": "run-p dev:scss vite",
"vite": "vite",
"dev:scss": "typed-scss-modules src --watch",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write src/*",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"fix": "run-p format lint:fix"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"eslint-plugin-import": "^2.26.0",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.64.1",
"typed-scss-modules": "^7.1.2"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.10.2",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@vitejs/plugin-react": "^2.0.1",
"eslint": "8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-react": "^7.31.1",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vite-plugin-checker": "^0.5.0",
"vite-plugin-pwa": "^0.12.3"
},
"volta": {
"node": "16.14.2",
"yarn": "1.22.18"
}
}