forked from TN1ck/super-sudoku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.62 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
{
"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'",
"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.2",
"@types/d3-path": "1.0.8",
"@types/jest": "25.1.4",
"@types/keymaster": "1.6.28",
"@types/lodash": "4.14.149",
"@types/node": "^18.7.14",
"@types/redux-logger": "3.0.7",
"@types/styled-components": "5.1.26",
"commander": "5.0.0",
"eslint": "6.8.0",
"jest": "29.0.1",
"showdown": "1.9.1",
"ts-helpers": "1.1.2",
"ts-jest": "28.0.8",
"ts-loader": "6.2.2",
"ts-node": "8.8.1",
"tslint": "6.1.0",
"tslint-loader": "3.6.0",
"tslint-react": "4.2.0",
"typescript": "4.7.4",
"url-loader": "4.0.0"
},
"dependencies": {
"@headlessui/react": "^1.6.6",
"@reduxjs/toolkit": "^1.8.5",
"@tanstack/react-location": "^3.7.4",
"@types/react-dom": "^18.0.6",
"@types/react-lazyload": "^2.6.0",
"@vitejs/plugin-react": "^2.0.1",
"autoprefixer": "^10.4.8",
"clsx": "^1.2.1",
"history": "4.10.1",
"keymaster": "1.6.2",
"lodash": "4.17.15",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-lazyload": "^2.6.5",
"react-redux": "8.0.2",
"redux": "4.2.0",
"redux-logger": "3.0.6",
"styled-components": "5.3.5",
"tailwind-override": "^0.6.1",
"tailwindcss": "^3.1.8",
"vite": "^3.0.9",
"vite-tsconfig-paths": "^3.5.0"
}
}