-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.72 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
56
57
58
59
60
{
"name": "gilgachat",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite",
"prebuild": "tsc --noEmit",
"build": "npm run prebuild && vite build",
"preview": "vite preview",
"start": "npm run build && npm run preview",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint . --cache && stylelint \"**/*.scss\" --cache",
"lint:fix": "npm run format:fix && eslint . --fix && stylelint \"**/*.scss\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.2",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jiti": "^2.6.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"stylelint": "^17.4.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-order": "^8.1.0",
"ts-jest": "^29.4.9",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^7.3.1"
},
"lint-staged": {
"*.{ts,mts,cts,js,mjs,cjs}": "eslint --fix",
"*.{scss,css}": "stylelint --fix",
"*.{ts,js,json,md,scss,css}": "prettier --write"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"@fortawesome/fontawesome-free": "^7.2.0",
"dotenv": "^17.3.1",
"handlebars": "^4.7.8"
}
}