-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
90 lines (90 loc) · 2.77 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "super-sudoku",
"version": "0.1.0",
"description": "Super Sudoku",
"license": "MIT",
"scripts": {
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist/",
"test": "jest",
"test-watch": "jest --watch",
"test-watchAll": "jest --watchAll",
"start": "vite",
"prettier:write": "prettier --write './src/**/*.ts' './src/**/*.tsx'",
"fetch-sudokus": "ts-node --project ./tsconfig.json ./scripts/fetch_sudokus.ts -l 6 -n 100 -p sudokuDotCom",
"generate-easy-sudokus": "ts-node --project ./tsconfig.json ./scripts/generate_sudokus.ts -d easy -n 500",
"generate-medium-sudokus": "ts-node --project ./tsconfig.json ./scripts/generate_sudokus.ts -d medium -n 500",
"generate-hard-sudokus": "ts-node --project ./tsconfig.json ./scripts/generate_sudokus.ts -d hard -n 500",
"generate-expert-sudokus": "ts-node --project ./tsconfig.json ./scripts/generate_sudokus.ts -d expert -n 500",
"generate-evil-sudokus": "ts-node --project ./tsconfig.json ./scripts/generate_sudokus.ts -d evil -n 500",
"read-sudokus": "ts-node --project ./tsconfig.json ./scripts/read_sudokus.ts"
},
"keywords": [
"sudoku",
"sudoku generator",
"sudoku solver",
"sudoku game",
"online sudoku",
"sudoku",
"game"
],
"jest": {
"preset": "ts-jest"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.7",
"@types/d3-path": "3.1.0",
"@types/jest": "29.5.12",
"@types/keymaster": "1.6.33",
"@types/lodash": "4.17.0",
"@types/node": "20.12.7",
"@types/redux-logger": "3.0.13",
"@types/styled-components": "5.1.34",
"cheerio": "1.0.0-rc.12",
"commander": "12.0.0",
"eslint": "9.1.1",
"jest": "29.7.0",
"showdown": "2.1.0",
"ts-helpers": "1.1.2",
"ts-jest": "29.1.2",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"url-loader": "4.1.1"
},
"dependencies": {
"@headlessui/react": "1.7.19",
"@tanstack/react-location": "3.7.4",
"@types/react-dom": "18.3.0",
"@types/react-lazyload": "3.2.3",
"@vitejs/plugin-react": "4.2.1",
"autoprefixer": "10.4.19",
"clsx": "2.1.1",
"history": "5.3.0",
"hotkeys-js": "3.13.7",
"lodash": "4.17.21",
"postcss": "8.4.38",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.14",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-lazyload": "3.2.1",
"react-redux": "9.1.1",
"redux": "5.0.1",
"redux-logger": "3.0.6",
"redux-thunk": "3.1.0",
"styled-components": "6.1.8",
"tailwind-override": "0.6.1",
"tailwindcss": "3.4.3",
"vite": "5.2.10",
"vite-tsconfig-paths": "4.3.2"
},
"overrides": {
"react-lazyload": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}
}