-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.78 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
{
"name": "24-card-game-solver",
"version": "1.0.0",
"private": true,
"description": "24 solver",
"author": "Austin Sullivan",
"main": "./dist/main.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:watch": "vite build --watch",
"serve": "vite preview",
"test": "vitest run && playwright test",
"test:watch": "vitest",
"test:unit": "vitest run unit",
"test:unit:watch": "vitest unit",
"test:component": "vitest run component",
"test:component:watch": "vitest component",
"test:e2e": "playwright test",
"lint": "eslint --max-warnings 0",
"format": "eslint --fix"
},
"dependencies": {
"bootstrap": "^5.3.3",
"js-combinatorics": "^2.1.2",
"vue": "^3.5.13"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@fullhuman/postcss-purgecss": "^7.0.2",
"@playwright/test": "^1.49.1",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-typescript": "^14.2.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^5.4.11",
"vite-plugin-pwa": "^0.21.1",
"vitest": "^2.1.8"
},
"bugs": {
"url": "https://github.com/acs3ss/24-card-game-solver/issues"
},
"homepage": "https://github.com/acs3ss/24-card-game-solver#readme",
"keywords": [
"24",
"solver"
],
"license": "ISC",
"maintainers": [
"Austin Sullivan",
"Winston Liu"
],
"repository": {
"type": "git",
"url": "git+https://github.com/acs3ss/24-card-game-solver.git"
}
}