forked from SoftwareBrothers/adminjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
166 lines (166 loc) · 4.88 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "adminjs",
"version": "6.4.1",
"description": "Admin panel for apps written in node.js",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha ./spec/index.js",
"types": "tsc",
"clean": "rm -rf lib && mkdir lib && rm -fr types && mkdir types",
"build": "babel src --out-dir lib --copy-files --extensions '.ts,.js,.jsx,.tsx'",
"lint": "eslint './spec/**/*' './src/**/*' './cy/**/*' './*'",
"cover": "NODE_ENV=test nyc --reporter=lcov --reporter=text-lcov npm test",
"codecov": "NODE_ENV=test nyc --reporter=text-lcov npm test | codecov --pipe",
"bundle": "node bin/watch-dev.js",
"bundle:globals": "node bin/bundle-globals.js",
"cspell": "cspell src/**/*.ts src/**/*.js src/**/*.tsx src/**/*.jsx",
"check:all": "yarn types && yarn cspell && yarn lint && yarn test && ONCE=true yarn bundle && ONCE=true NODE_ENV=production yarn bundle",
"dev": "npm-run-all --parallel \"build --watch\" \"bundle\" \"types --watch\"",
"release": "semantic-release"
},
"bin": {
"admin": "./cli.js"
},
"nyc": {
"exclude": [
"spec",
"example-app",
"src/**/*.spec.ts",
"src/**/*.spec.js",
"src/**/*.spec.tsx",
"src/**/*.spec.jsx",
"src/**/*.factory.ts",
"src/backend/bundler/user-components-bundler.ts",
"docs",
"coverage",
"types",
"src/frontend/assets/scripts",
"lib",
".vscode",
".github",
"**/*.spec.js"
],
"all": true,
"extension": [
".js",
".jsx",
".tsx",
".ts"
]
},
"repository": {
"type": "git",
"url": "https://github.com/SoftwareBrothers/adminjs.git"
},
"keywords": [
"hapi",
"express",
"mongoose",
"admin",
"admin-panel"
],
"browserslist": [
"last 10 Chrome versions"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "Wojciech Krysiak",
"license": "MIT",
"bugs": {
"url": "https://github.com/SoftwareBrothers/adminjs/issues"
},
"homepage": "https://github.com/SoftwareBrothers/adminjs#readme",
"dependencies": {
"@adminjs/design-system": "^3.0.3",
"@babel/core": "^7.10.2",
"@babel/parser": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@babel/register": "^7.10.1",
"@hello-pangea/dnd": "^16.0.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/babel-core": "^6.25.7",
"@types/react": "^18.0.8",
"axios": "^0.27.2",
"babel-plugin-styled-components": "^1.11.1",
"commander": "^5.1.0",
"flat": "^4.1.0",
"i18next": "^21.9.2",
"lodash": "^4.17.21",
"ora": "^5.4.1",
"prop-types": "^15.7.2",
"punycode": "^2.1.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-i18next": "^11.18.6",
"react-is": "^18.1.0",
"react-redux": "^8.0.2",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"slash": "^3.0.0",
"styled-components": "^5.3.5",
"uuid": "^8.3.2",
"xss": "^1.0.13"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/git": "^9.0.0",
"@testing-library/react": "^13.3.0",
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.2",
"@types/flat": "^0.0.28",
"@types/lodash": "^4.14.141",
"@types/mocha": "^8.0.3",
"@types/react-dom": "^18.0.0",
"@types/sinon": "^9.0.6",
"@types/sinon-chai": "^3.2.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-change": "^2.1.2",
"core-js": "^3.25.3",
"cspell": "^4.0.44",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"factory-girl": "^5.0.4",
"husky": "^4.2.5",
"istanbul": "^0.4.5",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.1.3",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"require.all": "^2.0.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"semantic-release": "^17.0.7",
"semantic-release-jira-releases-sb": "^0.7.2",
"semantic-release-slack-bot": "^1.6.2",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"typescript": "^4.7.4"
}
}