-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "8-puzzle-react",
"version": "1.0.0",
"description": "8-puzzle with React.js",
"main": "index.js",
"author": "jeovazero",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"fmt": "dprint fmt",
"lint": "eslint --cache --ext .ts,.tsx -c .eslintrc.yaml src/",
"prepare": "husky install"
},
"devDependencies": {
"@types/react": "17.0.5",
"@types/react-dom": "17.0.5",
"@types/styled-components": "5.1.9",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"@vitejs/plugin-react-refresh": "1.3.1",
"dprint": "0.14.0",
"eslint": "7.26.0",
"eslint-plugin-dprint": "0.4.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "6.0.0",
"lint-staged": "11.0.0",
"typescript": "4.1.2",
"vite": "2.3.0",
"vite-plugin-svg-icons": "0.5.0"
},
"dependencies": {
"@react-spring/web": "9.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "5.3.0"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --cache --fix",
"dprint fmt"
]
}
}