-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1001 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1001 Bytes
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
{
"name": "sudoku",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx --fix",
"spell": "./scripts/spell"
},
"dependencies": {
"ahooks": "3.7.4",
"ramda": "0.28.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"runtypes": "6.6.0",
"styled-components": "5.3.6",
"sudoku-gen": "1.0.0"
},
"devDependencies": {
"@fullstacksjs/eslint-config": "8.10.0",
"@fullstacksjs/tsconfig": "1.0.0",
"@types/ramda": "0.28.21",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@types/styled-components": "5.1.26",
"@vitejs/plugin-react": "3.0.0",
"cspell": "6.19.2",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.3",
"typescript": "4.9.3",
"vite": "4.0.0",
"vite-tsconfig-paths": "4.0.5"
},
"volta": {
"node": "16.17.0",
"npm": "8.19.2"
}
}