-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "vocab",
"version": "0.0.0",
"description": "",
"author": "Charly Lersteau",
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"serve": "vite preview",
"start": "vite",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@solidjs/router": "^0.14.7",
"solid-js": "^1.9.1"
},
"devDependencies": {
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.5.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-solid": "^0.14.3",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.9.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"sass": "^1.79.4",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-solid": "^2.10.2",
"vitest": "^2.1.1"
}
}