-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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": "ticket-genie",
"version": "0.0.0-development",
"scripts": {
"-preinstall": "npx typesync",
"postinstall": "npx patch-package",
"build": "npx tsup ./src/main.ts --treeshake --minify",
"dev": "npx tsup ./src/main.ts --onSuccess=\"NODE_ENV=development node dist/main.cjs\" --watch",
"create:migration": "touch \"./src/migrations/$(node -e 'console.log(new Date().getTime())').ts\"",
"start": "node dist/main.cjs",
"test": "dotenv -e .env.test -- npx jest --detectOpenHandles",
"coverage": "npm run test -- --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"release": "standard-version",
"semantic-release": "semantic-release"
},
"type": "module",
"dependencies": {
"@planetscale/database": "^1.7.0",
"@total-typescript/ts-reset": "^0.4.2",
"kysely": "^0.24.2"
},
"devDependencies": {
"@axiomhq/axiom-node": "^0.11.0",
"@swc/core": "^1.3.41",
"@types/chalk": "^2.2.0",
"@types/eslint": "^8.21.2",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.3",
"@types/semantic-release": "^20.0.1",
"@types/standard-version": "^7.0.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"chalk": "^4.1.2",
"discord.js": "^14.8.0",
"discordx": "^11.7.1",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.1.0",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"kysely-planetscale": "^1.3.0",
"outdent": "^0.8.0",
"reflect-metadata": "^0.1.13",
"semantic-release": "^20.1.3",
"serialize-error": "^11.0.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.5",
"tsup": "^6.6.3",
"typescript": "^5.0.2",
"winston": "^3.8.2",
"zod": "^3.21.4"
},
"release": {
"branches": [
"main"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ImLunaHey/ticket-genie.git"
},
"overrides": {
"tsup": {
"typescript": "$typescript"
}
}
}