forked from SoftwareBrothers/adminjs-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.47 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "admin-bro-dev",
"version": "0.1.0",
"description": "wrapper repo for entire AdminBro core with couple of its plugins",
"main": "index.js",
"scripts": {
"docs": "node_modules/.bin/jsdoc -c jsdoc.json",
"validate-docs": "node_modules/.bin/jsdoc -c jsdoc-test.json",
"debug": "nodemon --inspect=0.0.0.0:9222 --nolazy ./index.js",
"start": "nodemon -e js,jsx --ignore 'app-bundle.js' --ignore '*.spec.js' ./index.js",
"start:express": "nodemon --ignore '*.spec.js' ./admin-bro-example-app/express/index.js",
"parcel": "parcel ./docs/entry.js -d ./docs/build",
"parcel:build": "parcel build ./docs/entry.js -d ./docs/build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareBrothers/admin-bro-dev.git"
},
"author": "Wojciech Krysiak",
"license": "MIT",
"bugs": {
"url": "https://github.com/SoftwareBrothers/admin-bro-dev/issues"
},
"homepage": "https://github.com/SoftwareBrothers/admin-bro-dev#readme",
"dependencies": {
"@emotion/unitless": "^0.7.3",
"admin-bro": "^0.1.2",
"admin-bro-expressjs": "^0.1.5",
"admin-bro-hapijs": "^0.1.1",
"admin-bro-mongoose": "^0.1.1",
"admin-bro-sequelizejs": "^0.1.0",
"axios": "^0.18.0",
"bcrypt": "^3.0.2",
"boom": "^7.3.0",
"brace": "^0.11.1",
"chart.js": "^2.7.3",
"cookie-parser": "^1.4.4",
"express": "^4.16.4",
"express-session": "^1.15.6",
"flat": "^4.1.0",
"hapi": "^17.8.1",
"inert": "^5.1.2",
"moment": "^2.23.0",
"mongoose": "^5.3.15",
"nodemon": "^1.18.8",
"pg": "^7.7.1",
"react": "^15.3.0 || ^16.0.0",
"react-ace": "^6.5.0",
"react-docgen": "^4.1.1",
"react-dom": "^15.3.0 || ^16.0.0",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"react-select": "^2.4.3",
"recharts": "^1.5.0",
"redux": "^4.0.1",
"sequelize": "^5.8.12",
"sequelize-cli": "^5.4.0",
"styled-components": "^4.2.0",
"xss": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^6.0.0",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-nodemon": "^2.4.2",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-uglify": "^3.0.1",
"jsdoc": "^3.5.5",
"jsdoc-mermaid": "^1.0.0",
"jsdoc-typeof-plugin": "^1.0.0",
"parcel-bundler": "^1.12.3"
}
}