-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.78 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.78 KB
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
{
"name": "codebox",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/homer0/codebox.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"main": "src/index.js",
"engineStrict": true,
"engines": {
"node": ">=20"
},
"dependencies": {
"@homer0/object-utils": "^3.0.4",
"fs-extra": "^11.2.0",
"yaml": "^2.4.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@eclass/semantic-release-docker": "^4.0.0",
"@homer0/eslint-plugin": "^12.0.4",
"@homer0/prettier-config": "^1.1.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"semantic-release": "^23.0.7"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"prepare": "[ \"$NODE_ENV\" = production ] && exit 0; is-ci || husky install",
"lint": "lint-staged",
"lint:all": "eslint ./ --ext .js",
"test": "echo \"lol\"",
"dev:setting": "./dev/scripts/settings.js",
"dev:container:delete": "./dev/scripts/container-delete.sh",
"predev:container:run": "npm run dev:container:delete",
"dev:container:run": "./dev/scripts/container-run.sh",
"predev:image:delete": "npm run dev:container:delete",
"dev:image:delete": "./dev/scripts/image-delete.sh",
"predev:image:build": "npm run dev:image:delete",
"dev:image:build": "./dev/scripts/image-build.sh",
"dev:all": "npm run dev:image:build && npm run dev:container:run"
}
}