-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "kanel-monorepo",
"private": true,
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kristiandupont/kanel.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kristiandupont/kanel/issues"
},
"homepage": "https://kristiandupont.github.io/kanel",
"author": {
"name": "Kristian Dupont",
"url": "http://www.kristiandupont.com"
},
"workspaces": [
"packages/kanel",
"packages/kanel-seeder",
"packages/kanel-knex",
"packages/kanel-zod",
"packages/kanel-kysely"
],
"scripts": {
"run-example": "kanel -c ./example/.kanelrc.js",
"start-example-db": "docker run -d --name dvd-rental -p 54321:5432 kristiandupont/dvdrental-image",
"stop-example-db": "docker stop dvd-rental",
"lint": "eslint . -f visualstudio --report-unused-disable-directives --ext .js,.ts",
"lint:fix": "eslint . -f visualstudio --report-unused-disable-directives --ext .js,.ts --fix",
"docs:dev": "vitepress dev docs-src",
"docs:build": "vitepress build docs-src"
},
"devDependencies": {
"@kristiandupont/dev-deps": "^2.26.0",
"vitepress": "1.5.0",
"vue": "3.5.13"
},
"engines": {
"node": ">=16.0.0"
}
}