-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
35 lines (35 loc) · 1.1 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
{
"name": "ilc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/namecheap/ilc.git"
},
"scripts": {
"install-all": "node install_all.js",
"start": "node start_all.js",
"start:no-apps": "node start_all.js --no-apps",
"build": "npm run build:ilc && npm run build:registry",
"build:ilc": "cd ./ilc/ && npm run build",
"build:registry": "cd ./registry/ && npm run build",
"postinstall": "npm run install-all",
"format": "npx prettier --write \"registry/**/*.ts\" \"ilc/**/*.{js,ts}\" ",
"format:check": "npx prettier --check \"registry/**/*.ts\" \"ilc/**/*.{js,ts}\" ",
"prepare": "husky"
},
"author": "",
"license": "Apache-2.0",
"engines": {
"node": "^20.8.0",
"npm": ">= 6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"concurrently": "^9.0.1",
"husky": "^9.1.7",
"prettier": "^3.3.3"
}
}