-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.43 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.43 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
{
"name": "smiler",
"author": "Darkzarich",
"version": "1.0.0",
"description": "Smiler project monorepository.",
"packageManager": "pnpm@8.6.0",
"engines": {
"node": ">=v20.17.0",
"pnpm": ">=8.6.0"
},
"scripts": {
"dev": "concurrently --kill-others \"pnpm --filter backend dev\" \"pnpm --filter frontend dev\"",
"build": "pnpm --filter backend build && pnpm --filter frontend build",
"prepare": "husky",
"precommit": "lint-staged",
"prepush": "pnpm run lint:spell && pnpm run lint:code && pnpm run lint:types && pnpm run test:prepush",
"lint:code": "pnpm --filter backend lint:code && pnpm --filter frontend lint:ts && pnpm --filter frontend lint:css",
"lint:spell": "cspell --no-progress .",
"lint:types": "pnpm --filter backend lint:types && pnpm --filter frontend lint:types",
"test": "pnpm --filter \"backend\" test && pnpm --filter \"frontend\" test:e2e:ci",
"test:prepush": "pnpm --filter backend test && pnpm --filter frontend test:unit:ci",
"knip": "knip"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Darkzarich/Smiler/issues"
},
"homepage": "https://github.com/Darkzarich/Smiler#readme",
"devDependencies": {
"concurrently": "^9.2.1",
"cspell": "^8.19.4",
"husky": "^9.1.7",
"knip": "^5.88.1",
"lint-staged": "^16.4.0"
},
"pnpm": {
"patchedDependencies": {
"vuedraggable@4.1.0": "patches/vuedraggable@4.1.0.patch"
}
}
}