-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.85 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "sidequest-monorepo",
"private": true,
"type": "module",
"description": "Monorepo for Sidequest.js",
"engines": {
"node": ">=22.6.0"
},
"workspaces": [
"packages/*",
"packages/backends/*",
"examples"
],
"scripts": {
"build": "cross-env NODE_ENV=production turbo run build",
"build:examples": "cross-env NODE_ENV=production turbo run build --filter=examples",
"test": "yarn vitest --exclude packages/backends --exclude tests/integration",
"test:integration": "yarn vitest --test-timeout=10000 tests/integration",
"test:integration:ci": "yarn vitest run --test-timeout=10000 --silent=passed-only tests/integration",
"test:ci": "turbo run test:ci --filter=!'@sidequest/*-backend'",
"test:debug": "yarn vitest --test-timeout=0 --exclude packages/backends --exclude tests/integration",
"test:coverage": "vitest run --coverage --exclude packages/backends --exclude tests/integration",
"test:all": "yarn vitest --exclude tests/integration",
"test:all:ci": "turbo run test:ci",
"test:all:debug": "yarn vitest --test-timeout=0 run --exclude tests/integration",
"test:all:coverage": "vitest run --coverage --exclude tests/integration",
"format": "prettier --write \"**/*.{ts,js,mts,tsx,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,mts,tsx,jsx}\"",
"lint": "eslint . --ext .ts,.mts,.js,.tsx,.jsx",
"lint:fix": "eslint . --ext .ts,.mts,.js,.tsx,.jsx --fix",
"dev": "cross-env NODE_ENV=development turbo run dev --concurrency 13",
"clean:dist": "rimraf packages/**/dist",
"clean:turbo": "rimraf **/.turbo",
"clean": "yarn clean:dist; yarn clean:turbo",
"db:pg": "docker run --name pg-default -e POSTGRES_PASSWORD=postgres -p 5432:5432 -d postgres",
"db:mysql": "docker run --name mysql-default -e MYSQL_ROOT_PASSWORD=mysql -e MYSQL_DATABASE=testdb -p 3306:3306 -d mysql:8",
"db:mongodb": "docker run --name mongodb-default -p 27017:27017 -d mongo:7",
"db:pg:stop": "docker stop pg-default && docker rm pg-default",
"db:mysql:stop": "docker stop mysql-default && docker rm mysql-default",
"db:mongodb:stop": "docker stop mongodb-default && docker rm mongodb-default",
"db:all": "yarn db:pg && yarn db:mysql && yarn db:mongodb",
"db:all:stop": "yarn db:pg:stop && yarn db:mysql:stop && yarn db:mongodb:stop",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "^9.39.2",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@tailwindcss/cli": "^4.1.18",
"@tailwindcss/postcss": "^4.1.18",
"@tsconfig/recommended": "^1.0.13",
"@types/express": "^5.0.6",
"@types/node": "^24.10.10",
"@vitest/coverage-v8": "4.0.18",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"globals": "^17.3.0",
"husky": "^9.1.7",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"rimraf": "^6.1.2",
"rollup": "^4.57.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-copy-watch": "^0.0.1",
"rollup-plugin-delete": "^3.0.2",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-postcss": "^4.0.2",
"semantic-release": "^25.0.3",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"turbo": "^2.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitepress": "^1.6.4",
"vitest": "^4.0.18"
},
"packageManager": "yarn@4.13.0"
}