-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.49 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
{
"name": "DevUniv",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"ci": "pnpm install --frozen-lockfile",
"fi": "pnpm install --force",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.19.2",
"pretendard": "^1.3.9",
"qs": "^6.12.1"
},
"devDependencies": {
"@rune-ts/server": "^0.9.24",
"@types/express-serve-static-core": "^4.19.0",
"@types/node": "^20.11.20",
"@types/qs": "^6.9.15",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-boundaries": "^4.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-prettier": "^5.0.0",
"stylelint-scss": "^6.2.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.scss": [
"stylelint --fix '**/*.scss'"
],
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": "20.11.1"
},
"volta": {
"node": "20.11.1"
},
"pnpm": {
"override": {
"rune-ts": "^0.8.12"
}
}
}