generated from SoftwareBrothers/adminjs-feature-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.33 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
70
71
72
73
74
75
{
"name": "@adminjs/themes",
"version": "1.0.1",
"private": false,
"repository": "[email protected]:SoftwareBrothers/adminjs-themes.git",
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"bin": {
"adminjs-themes": "./dist/cli/index.js"
},
"scripts": {
"release": "semantic-release",
"clean": "rimraf dist types",
"types": "tsc",
"build": "babel src --out-dir dist --copy-files --extensions '.ts,.js,.jsx,.tsx'",
"bundle": "yarn cli bundle",
"generate": "yarn cli generate",
"cli": "node --loader ts-node/esm ./src/cli/index.ts",
"register:cli": "yarn global add \"link:$PWD\"",
"lint": "eslint './src/**/*'",
"lint:fix": "eslint --fix",
"style": "prettier --check src",
"format": "prettier --write src --config ./.prettierrc",
"test": "echo \"Error: no test specified\"",
"check:all": "yarn lint && yarn style && yarn build && yarn test"
},
"peerDependencies": {
"adminjs": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/git": "^10.0.1",
"@types/lodash": "^4.14.192",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"adminjs": "^7.0.0",
"eslint": "^8.36.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"semantic-release": "^21.0.0",
"semantic-release-slack-bot": "^4.0.0"
},
"dependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.21.0",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@rollup/plugin-virtual": "^3.0.1",
"commander": "^10.0.0",
"rimraf": "^4.4.1",
"rollup": "^3.20.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}