-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.7 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
{
"name": "db_labs",
"version": "2.1.0",
"main": "index.js",
"description": "Databases labs template",
"repository": {
"type": "git",
"url": "git+https://github.com/kujo205/db_labs.git"
},
"author": "Ivan Kuts <[email protected]>",
"license": "MIT",
"scripts": {
"docs:dev": "npx vuepress dev docs",
"docs:build": "npx vuepress build docs",
"publish": "sh publish.sh",
"dev": "tsnd --respawn --pretty --transpile-only ./src/app",
"db:generate-migration": "drizzle-kit generate:mysql",
"db:execute-migration": "ts-node ./scripts/migrate.ts",
"db:push": "drizzle-kit push:mysql && ts-node ./src/scripts/insertDefaultValues.ts",
"db:pull-schema": "drizzle-kit introspect:mysql",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.9.1",
"@vuepress/plugin-back-to-top": "^1.7.1",
"@vuepress/plugin-pwa": "^1.7.1",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.29.0",
"express": "^4.18.2",
"mysql2": "^3.6.3",
"vuepress": "^1.9.10",
"vuepress-theme-cool": "^1.3.1",
"zod": "^3.22.4"
},
"bugs": {
"url": "https://github.com/kujo205/db_labs/issues"
},
"homepage": "https://github.com/kujo205/db_labs#readme",
"directories": {
"doc": "docs",
"test": "test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.11.0",
"drizzle-kit": "^0.20.4",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "3.1.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}