forked from SoftwareBrothers/adminjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.84 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
{
"name": "admin-bro",
"version": "0.5.0",
"description": "Admin panel for apps written in node.js",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha spec",
"lint": "./node_modules/eslint/bin/eslint.js './spec/**/*.js' './src/**/*.js' --ignore-pattern='*.min.js'",
"cover": "NODE_ENV=test ./node_modules/nyc/bin/nyc.js --reporter=lcov -x=spec -x=docs -x=coverage --all=true npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareBrothers/admin-bro.git"
},
"keywords": [
"hapi",
"express",
"mongoose",
"admin",
"admin-panel"
],
"_moduleAliases": {
"@root": ".",
"@backend": "./src/backend",
"@frontend": "./src/frontend"
},
"author": "Wojciech Krysiak",
"license": "MIT",
"bugs": {
"url": "https://github.com/SoftwareBrothers/admin-bro/issues"
},
"homepage": "https://github.com/SoftwareBrothers/admin-bro#readme",
"dependencies": {
"chart.js": "^2.7.3",
"flat": "^4.1.0",
"jw-paginate": "^1.0.2",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"pug": "^2.0.3",
"require.all": "^2.0.4",
"xss": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-plugin-istanbul": "^4.1.6",
"chai": "^4.1.2",
"chai-change": "^2.1.2",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"factory-girl": "^5.0.4",
"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",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"module-alias": "^2.1.0",
"nyc": "^12.0.2",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0"
}
}