-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 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
76
77
78
79
80
81
82
83
{
"name": "alinex-admin",
"description": "Alinex Admin Server",
"version": "0.1.0",
"private": true,
"title": "Alinex Admin Server",
"keywords": [
"admin",
"REST",
"server"
],
"license": "Apache-2.0",
"author": {
"name": "Alexander Schilling",
"email": "info@alinex.de",
"web": "http://alinex.de"
},
"contributors": [],
"copyright": "Alexander Schilling 2018",
"homepage": "https://alinex.gitbooks.io/quasar-admin/",
"repository": {
"type": "git",
"url": "https://github.com/alinex/quasar-admin"
},
"bugs": "https://github.com/alinex/quasar-admin/issues",
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": "^8.0.0",
"npm": ">= 3.0.0"
},
"bin": {
"admin-panel": "./bin/admin-panel"
},
"man": "./dist/validator.1",
"main": "./src/index.js",
"scripts": {
"dev": "mkdir -p logs && (nodemon src/ | tee logs/access.log) 3>&1 1>&2 2>&3 | tee logs/error.log",
"test": "npm run eslint && npm run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"mocha": "mocha test/ --recursive --exit",
"start": "mkdir -p logs && (node src/ | tee -a logs/access.log) 3>&1 1>&2 2>&3 | tee -a logs/error.log"
},
"dependencies": {
"@casl/ability": "^2.3.0",
"@casl/mongoose": "^2.1.1",
"@feathersjs/authentication": "^2.1.6",
"@feathersjs/authentication-jwt": "^2.0.1",
"@feathersjs/authentication-local": "^1.2.1",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.3",
"@feathersjs/feathers": "^3.1.6",
"@feathersjs/socketio": "^3.2.2",
"alinex-validator": "^3.0.1",
"ansi-to-html": "^0.6.4",
"compression": "^1.7.2",
"cors": "^2.8.4",
"express-winston": "^2.5.1",
"feathers-hooks-common": "^4.11.3",
"feathers-memory": "^2.1.2",
"feathers-mongoose": "^6.1.2",
"feathers-nedb": "^3.0.1",
"feathers-profiler": "^0.1.5",
"feathers-swagger": "^0.7.1",
"helmet": "^3.12.1",
"mongoose": "^5.1.4",
"nedb": "^1.8.0",
"serve-favicon": "^2.5.0",
"usage": "^0.7.1",
"winston": "^2.4.2",
"winston-console-formatter": "^1.0.0-beta.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"request": "^2.87.0",
"request-promise": "^4.2.2"
}
}