-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.7 KB
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
{
"name": "eight-queens",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "8 queens problem visualizer",
"homepage": ".",
"author": {
"email": "amandeep.singh.fsd@gmail.com",
"name": "Amandeep Singh"
},
"dependencies": {
"gh-pages": "^6.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.5",
"uuid": "^8.3.2"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest run --passWithNoTests",
"check": "run-s format lint test tsc",
"tsc": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,scss,html,md,json}\" --config ./.prettierrc.cjs",
"lint": "eslint \"src/**/*.{ts,tsx}\" --report-unused-disable-directives --max-warnings 5",
"preview": "vite preview",
"deploy": "GITHUB_PAGES_REPO=eight-queens-problem-visualizer run-s build deploy:gh-pages",
"deploy:gh-pages": "gh-pages -d dist -- --message \"Updates\""
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.11.30",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^9.11.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.12",
"jsdom": "^24.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.8.1",
"vite": "^5.4.0",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^2.1.0"
},
"type": "module"
}