-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "starter-fullstack",
"type": "module",
"private": true,
"packageManager": "pnpm@9.15.4",
"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.14.0",
"@dotenvx/dotenvx": "1.11.4",
"@types/aws-lambda": "^8.10.147",
"@unocss/eslint-plugin": "^65.4.2",
"eslint": "^9.18.0",
"frontend": "workspace:*",
"lint-staged": "^15.4.1",
"pathe": "^2.0.2",
"simple-git-hooks": "^2.11.1",
"std-env": "^3.8.0",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"unocss": "^65.4.2"
},
"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",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}