-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.64 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.64 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
42
43
44
45
46
47
48
{
"name": "formbase",
"version": "0.1.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"packages/config/*",
"tests"
],
"scripts": {
"app": "bun run dev --filter=@formbase/web",
"build": "turbo build",
"clean": "rimraf --glob **/node_modules **/dist **/.turbo **/.next **/.astro **/.eslintcache bun.lock **/.tsbuildinfo **/test-results",
"d": "bun install && bun docker:start && bun run dev",
"dev": "turbo dev",
"docker:start": "docker-compose -p formbase -f ./docker/docker-compose.yml up -d",
"format": "prettier \"**/*\" --ignore-unknown --list-different --write",
"format:check": "prettier \"**/*\" --ignore-unknown --list-different",
"lint": "eslint . --cache --max-warnings 0",
"reset:changelog": "rimraf --glob **/*.mdx",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:e2e": "turbo run test:e2e",
"tests:ui": "bun run --cwd=tests test:e2e:ui",
"typecheck": "tsc --noEmit --tsBuildInfoFile .tsbuildinfo"
},
"dependencies": {
"disposable-email-domains": "^1.0.62"
},
"devDependencies": {
"@formbase/tsconfig": "workspace:*",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/eslint": "^9.6.1",
"eslint": "^10.2.1",
"eslint-config-formbase": "workspace:*",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-curly": "^0.2.2",
"prettier-plugin-jsdoc": "^1.8.0",
"prettier-plugin-packagejson": "^2.5.22",
"prettier-plugin-tailwindcss": "^0.5.14",
"rimraf": "^5.0.10",
"turbo": "^2.9.6",
"typescript": "6.0.3"
},
"packageManager": "bun@1.3.11"
}