-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.43 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
{
"name": "accella",
"version": "0.0.1",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"release": "npm run build && changeset publish",
"format": "prettier -w '{src,tests,packages}/**/*.ts'",
"lint": "eslint && prettier --check '{src,tests,packages}/**/*.ts'",
"dev": "npm run dev --workspaces --if-present",
"build": "npm run build -w accel-record-core -w accel-record -w accel-record-factory -w prisma-generator-accel-record -w accel-web -w accella",
"generate:sqlite": "DATABASE_URL=file:./test.db npx prisma generate --schema=tests/prisma/schema.prisma",
"generate:mysql": "npx prisma generate --schema=tests/prisma_mysql/schema.prisma",
"generate:pg": "npx prisma generate --schema=tests/prisma_pg/schema",
"migrate:sqlite": "DATABASE_URL=file:./test.db npx prisma migrate dev --schema=tests/prisma/schema.prisma",
"migrate:mysql": "npx prisma migrate dev --schema=tests/prisma_mysql/schema.prisma",
"migrate:pg": "npx prisma migrate dev --schema=tests/prisma_pg/schema",
"test:sqlite": "DATABASE_URL=file:./test.db vitest",
"test:mysql": "DB_ENGINE=mysql vitest --typecheck",
"test:pg": "DB_ENGINE=pg vitest --typecheck",
"sample": "tsc -p . && node dist/src/index.js",
"check:schema": "npx tsx src/checkSchema.ts",
"check-package": "cd examples/minimal && npm run check && cd ../.."
},
"repository": {
"type": "git",
"url": "git+https://github.com/koyopro/accella.git"
},
"author": "koyopro",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/koyopro/accella/issues"
},
"homepage": "https://github.com/koyopro/accella#readme",
"private": true,
"workspaces": [
"packages/accel-record-core",
"packages/accel-record",
"packages/accel-record-factory",
"packages/prisma-generator-accel-record",
"packages/accel-web",
"examples/web_astro",
"packages/accella",
"packages/create-accella"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.9.0",
"@types/node": "^20.11.19",
"better-sqlite3": "^11.3.0",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"i18next": "^23.11.5",
"mysql2": "^3.9.8",
"pg": "^8.12.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.0.1",
"vitest": "^3.0.5"
},
"dependencies": {
"@prisma/client": ">=5.9.1",
"bcrypt-ts": "^5.0.2"
}
}