-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"type": "module",
"scripts": {
"deploy": "cross-env NODE_ENV=production tsc && cross-env NODE_ENV=production vite build",
"lint": "eslint . && stylelint ./css/**/*.css",
"test": "vitest run --coverage",
"test:watch": "vitest watch --coverage",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@csstools/postcss-relative-color-syntax": "^3.0.6",
"@fortawesome/fontawesome-free": "^6.7.1",
"@types/postcss-mixins": "^9.0.6",
"@types/web": "^0.0.185",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"normalize.css": "^8.0.1",
"postcss-mixins": "^11.0.3",
"postcss-simple-vars": "^7.0.1",
"typescript": "^5.7.2",
"vite": "^6.0.2"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/chai-dom": "^1.11.3",
"@vitest/coverage-v8": "^2.1.8",
"chai": "^5",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vitest": "^0.5.4",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2",
"typescript-eslint": "8.17.0",
"vitest": "^2.1.8",
"vitest-fetch-mock": "^0.4.2"
}
}