-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "starter-fullstack",
"type": "module",
"private": true,
"packageManager": "pnpm@9.13.2",
"engines": {
"node": ">=20.13.1"
},
"scripts": {
"build": "dotenvx run -- turbo run build",
"dev": "dotenvx run -- turbo run dev",
"devSST": "dotenvx run -f .env.sst -f .env -- sst dev \"pnpm -F=frontend run dev\"",
"lint": "turbo run lint",
"prepare": "simple-git-hooks"
},
"dependencies": {
"sst": "ion"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"@dotenvx/dotenvx": "1.11.4",
"@types/aws-lambda": "8.10.138",
"@unocss/eslint-plugin": "^0.64.1",
"eslint": "^9.15.0",
"frontend": "workspace:*",
"lint-staged": "^15.2.10",
"pathe": "^1.1.2",
"simple-git-hooks": "^2.11.1",
"std-env": "^3.8.0",
"tsx": "^4.19.2",
"turbo": "^2.3.0",
"typescript": "^5.6.3",
"unocss": "^0.64.1"
},
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"string.prototype.codepointat": "npm:@nolyfill/string.prototype.codepointat@^1"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}