-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"name": "tetris",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build --base=/react-tetris/",
"build:pr": "tsc && vite build",
"preview": "vite preview",
"lint-staged": "lint-staged",
"prepare": "husky install",
"lint": "eslint src --ext .js,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.ts,.tsx --fix",
"format": "prettier **/*.{js,ts,tsx,json,graphql} --check",
"format:fix": "prettier **/*.{js,ts,tsx,json,graphql} --write"
},
"dependencies": {
"classnames": "^2.3.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"styled-components": "^5.3.5",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"@vitejs/plugin-react": "^1.3.0",
"eslint": "8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.4.5",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"husky": "^6.0.0",
"jest": "^28.1.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.6.3",
"vite": "^2.9.16",
"vite-tsconfig-paths": "^3.5.0"
}
}