forked from SoftwareBrothers/adminjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.66 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
{
"name": "admin-bro",
"version": "1.0.2",
"description": "Admin panel for apps written in node.js",
"main": "index.js",
"scripts": {
"test": "mocha ./spec/index.js",
"test:build": "mocha ./spec/lib.js",
"clean": "rm -rf lib && mkdir lib",
"build": "babel src --out-dir lib --copy-files",
"lint": "eslint './spec/**/*.js' './src/**/*.js' './src/**/*.jsx' --ignore-pattern='*bundle.js'",
"cover": "NODE_ENV=test nyc --reporter=text --reporter=text-summary --reporter=lcov --all=true npm test",
"codecov": "NODE_ENV=test nyc --reporter=text-lcov npm test | codecov --pipe"
},
"nyc": {
"exclude": [
"spec",
"docs",
"coverage",
"src/frontend/assets/scripts",
"**/*.spec.js"
],
"all": true,
"extension": [
".js",
".jsx"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareBrothers/admin-bro.git"
},
"keywords": [
"hapi",
"express",
"mongoose",
"admin",
"admin-panel"
],
"browserslist": [
"last 3 Chrome versions"
],
"author": "Wojciech Krysiak",
"license": "MIT",
"bugs": {
"url": "https://github.com/SoftwareBrothers/admin-bro/issues"
},
"homepage": "https://github.com/SoftwareBrothers/admin-bro#readme",
"dependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"axios": "^0.18.0",
"babel-plugin-styled-components": "^1.10.0",
"classnames": "^2.2.6",
"flat": "^4.1.0",
"jw-paginate": "^1.0.2",
"lodash": "^4.17.11",
"prop-types": "^15.7.2",
"react": ">= 16.3.0",
"react-dom": ">= 16.3.0",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"react-select": "^2.4.2",
"redux": "^4.0.1",
"rollup": "^1.7.4",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.2",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-replace": "^2.1.1",
"rollup-plugin-terser": "^4.0.4",
"styled-components": "^4.2.0",
"xss": "^1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"chai": "^4.1.2",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"factory-girl": "^5.0.4",
"istanbul": "^0.4.5",
"jsdom": "^15.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"react-testing-library": "^7.0.0",
"require.all": "^2.0.4",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0"
}
}