-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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
{
"name": "@adminjs/cli",
"version": "1.0.5",
"type": "module",
"license": "MIT",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./types/index.d.ts"
}
},
"scripts": {
"clean": "rimraf lib types",
"build": "tsc && yarn copy-templates",
"copy-templates": "copyfiles -u 3 \"./src/commands/create/templates/**/*\" \"./lib/commands/create/\"",
"lint": "eslint \"src\"",
"register:local": "yarn global add file:$PWD",
"dev": "yarn clean && yarn build && yarn register:local",
"release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.15.11",
"@types/prompts": "^2.4.9",
"@types/randomstring": "^1.1.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"prettier": "^3.1.0",
"semantic-release": "^21.0.1",
"typescript": "^5.0.4"
},
"dependencies": {
"chalk": "^5.3.0",
"copyfiles": "^2.4.1",
"flat": "^6.0.1",
"fs-extra": "^11.1.1",
"pino": "^8.16.2",
"pino-pretty": "^10.2.3",
"prompts": "^2.4.2",
"randomstring": "^1.3.0",
"rimraf": "^5.0.0"
},
"bin": {
"adminjs": "./lib/cli.js"
}
}