-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.66 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
64
65
66
67
68
69
{
"name": "pentive",
"version": "0.0.0",
"//": "# if you change node's version from 20.14.0, also update `@types/node`",
"engines": {
"node": "20.14.0",
"pnpm": "9.5.0"
},
"packageManager": "[email protected]",
"type": "module",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-solid": "^0.14.0",
"kill-port": "=1.6.1",
"prettier-plugin-tailwindcss": "^0.6.5",
"turbo": "^2.1.1",
"typescript": "~5.6.2",
"wrangler": "^3.81.0"
},
"scripts": {
"kill": "kill-port 3011 3012 3013 3014 3015 3016 3017 3018 3019 3041 3042 3043 3044 3045 3046 3047 3048 3049",
"//dev": "",
"build": "turbo build",
"deploy": "turbo deploy",
"deploy-only": "turbo deploy --only",
"turso": "mkdir -p data.sqld && turso dev --port 3011 --db-file ./data.sqld/ivy.sqlite",
"format": "pnpm --parallel --no-bail -r format && prettier --ignore-path .gitignore --ignore-path misc.prettierignore --write .",
"format:check": "pnpm --parallel --no-bail -r format:check && prettier --ignore-path .gitignore --ignore-path misc.prettierignore --check .",
"eslint": "turbo eslint",
"eslint:fix": "pnpm --parallel --no-bail -r eslint:fix",
"check": "turbo check",
"test": "turbo test",
"test:run": "turbo test:run",
"tsc-build": "turbo tsc-build",
"tsc-watch": "cd dev && npx tsc --build --watch",
"tsc-clean": "rm -rf **/tsconfig.tsbuildinfo",
"//ci": "simulate cicd locally",
"ci": "git clean -xdf && ./mkenv.sh && ./rmcert.sh && ./mkcert.sh && pnpm i && pnpm turbo:all --force && ./initIvy.sh",
"cf": "git clean -xdf && ./mkenv.sh && ./rmcert.sh && ./mkcert.sh && pnpm i && npx turbo run tsc-build build && ./initIvy.sh",
"turbo:all": "PLAYWRIGHT_HTML_OPEN=never turbo run tsc-build eslint check test:run build"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@thisbeyond/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
},
"overrides": {
"got@<11.8.5": ">=11.8.5",
"json-schema@<0.4.0": ">=0.4.0",
"xml2js@<0.5.0": ">=0.5.0",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"get-func-name@<2.0.1": ">=2.0.1",
"zod@<=3.22.2": ">=3.22.3",
"postcss@<8.4.31": ">=8.4.31",
"undici@<5.26.2": ">=5.26.2",
"@babel/traverse@<7.23.2": ">=7.23.2"
}
}
}