-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
69 lines (69 loc) · 1.73 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
68
69
{
"version": "2.0.2",
"repository": {
"type": "git",
"url": "git+https://github.com/cam-inc/viron.git"
},
"keywords": [
"management",
"console",
"admin",
"design",
"openapi",
"typescript",
"gatsby"
],
"contributors": [
{
"name": "cathcheeno"
},
{
"name": "noritama"
},
{
"name": "fkei",
"email": "kei.topaz@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cam-inc/viron/issues"
},
"homepage": "https://github.com/cam-inc/viron#readme",
"scripts": {
"prepare": "which husky && husky install || echo skip.",
"pre-commit": "npm run pre-commit --workspaces",
"pre-push": "npm run pre-push --workspaces",
"changelog:intent": "changeset add",
"changelog:version": "changeset version",
"build": "npm run build --workspaces",
"clean": "npm run clean --workspaces",
"format": "npm run format --workspaces",
"lint": "npm run lint --workspacess",
"test": "npm run test --workspaces",
"example-nodejs:docker-compose:up:mongo": "docker-compose -f ./docker-compose.example-nodejs.mongo.yml up --build --force-recreate",
"example-nodejs:docker-compose:up:mysql": "docker-compose -f ./docker-compose.example-nodejs.mysql.yml up --build --force-recreate"
},
"devDependencies": {
"@changesets/cli": "^2.20.0",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"husky": "^8.0.3"
},
"workspaces": [
"packages/app",
"packages/linter",
"packages/nodejs",
"packages/website",
"example/nodejs"
],
"engines": {
"node": ">=18.14.0",
"npm": ">=9.3.1"
},
"private": true,
"volta": {
"node": "18.14.0",
"npm": "9.3.1"
}
}