This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 2.15 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
{
"name": "demo-app-build-your-own-supaglue",
"version": "0.0.0",
"private": true,
"repository": "[email protected]:supaglue-labs/demo-app-build-your-own-supaglue.git",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"typecheck": "tsc --project ./ --noEmit",
"lint": "eslint --ext .js,.ts,.tsx,.mdx --cache .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test::ci": "pnpm run test --ci --forceExit --detectOpenHandles --runInBand",
"test::watch": "pnpm run test --watch",
"test::debug": "NODE_OPTIONS=--experimental-vm-modules node --inspect-brk $(pnpm bin)/jest --runInBand --watch",
"commitlint": "commitlint --edit",
"prepare": "husky install",
"prettier:pkgjson": "pnpm prettier --write ./verticals/*/package.json ./packages/*/package.json"
},
"lint-staged": {
"**/*.{js,ts,tsx,json,css,yml,yaml}": "prettier --write",
"**/*.{js,ts,tsx}": "eslint --ext .js,.ts,.tsx --cache --fix"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/types": "^18.4.3",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@jest/globals": "^29.7.0",
"@tsconfig/strictest": "^2.0.2",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.2",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"alias-hq": "^6.2.3",
"esbuild": "^0.19.9",
"esbuild-jest": "^0.5.0",
"eslint": "^8.55.0",
"eslint-plugin-codegen": "^0.21.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-expect-type": "^0.2.3",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-mdx": "^3.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^49.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"prettier-plugin-packagejson": "^2.4.6",
"prettier-plugin-sql": "^0.18.0",
"tsx": "^4.6.2",
"turbo": "^1.10.16",
"typescript": "^5.3.2"
}
}