-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.83 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.83 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
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
{
"name": "feathers-plus-admin",
"description": "Project feathers-plus-admin",
"version": "0.0.1",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "bsa-git",
"email": "bsa2657@yandex.ru"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": "= 12.x",
"npm": "= 6.x",
"yarn": "= 1.x"
},
"scripts": {
"dev": "cross-env NODE_ENV=development DEBUG=app:* node src/",
"start": "cross-env NODE_ENV=production node src/",
"test:all": "yarn run eslint && cross-env NODE_ENV=test DEBUG=app:* yarn run mocha",
"test:debug": "yarn run eslint && cross-env NODE_ENV=test DEBUG=app:* yarn run mocha:debug",
"start:seed": "cross-env NODE_ENV=test node src/ --seed",
"start-mongod": "mongod -f mongod.config.yml",
"build": "nuxt build",
"eslint": "eslint --fix src/. test/. --config .eslintrc.json",
"mocha": "mocha test/ --recursive --exit --timeout 10000",
"mocha:debug": "mocha test/debug/ --recursive --exit --timeout 10000",
"generate:nuxt-github": "cross-env DEPLOY_ENV=GH_PAGES nuxt generate",
"generate:nuxt-static": "cross-env DEPLOY_ENV=OPEN_SERVER nuxt generate",
"generate:all": "feathers-plus generate all",
"generate:service": "feathers-plus generate service",
"generate:fakes": "feathers-plus generate fakes",
"generate:fake-normalize": "node src/plugins/test-helpers/fake-normalize",
"generate:auth": "feathers-plus generate authentication",
"generate:graphql": "feathers-plus generate graphql",
"generate:hook": "feathers-plus generate hook",
"generate:test": "feathers-plus generate test",
"heroku-postbuild": "yarn run build"
},
"dependencies": {
"@feathers-plus/graphql": "^1.10.0",
"@feathers-plus/test-utils": "^0.3.5",
"@feathersjs/authentication": "^2.1.15",
"@feathersjs/authentication-client": "^1.0.10",
"@feathersjs/authentication-jwt": "^2.0.9",
"@feathersjs/authentication-local": "^1.2.9",
"@feathersjs/authentication-oauth2": "^1.2.7",
"@feathersjs/client": "^3.7.7",
"@feathersjs/configuration": "^2.0.6",
"@feathersjs/errors": "^3.3.6",
"@feathersjs/express": "^1.3.1",
"@feathersjs/feathers": "^3.3.1",
"@feathersjs/socketio": "^3.2.9",
"@feathersjs/socketio-client": "^1.2.1",
"@nuxtjs/svg": "0.1.12",
"@nuxtjs/vuetify": "^1.11.2",
"ajv": "^5.5.2",
"axios": "^0.21.1",
"browser-cookies": "^1.2.0",
"chalk": "^2.4.2",
"compression": "^1.7.3",
"cookie-storage": "^3.2.0",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"debug": "^4.1.1",
"detect-lang": "^1.2.0",
"dotenv": "^6.2.0",
"dotenv-webpack": "^1.6.0",
"echarts": "^4.5.0",
"echarts-liquidfill": "^2.0.5",
"express-useragent": "^1.0.12",
"feathers-authentication-management": "^2.0.1",
"feathers-hooks-common": "^4.19.6",
"feathers-mailer": "^3.0.1",
"feathers-mongoose": "^6.3.0",
"feathers-vuex": "^1.7.0",
"graphql-resolvers-ast": "^1.4.0",
"helmet": "^3.15.0",
"highlight.js": "^9.18.1",
"lodash.merge": "^4.6.2",
"merge-graphql-schemas": "1.5.8",
"moment": "^2.24.0",
"mongodb-core": "^3.1.9",
"mongoose": "^5.12.11",
"nodemailer-smtp-transport": "^2.7.4",
"nuxt": "^2.10.0",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^1.0.0",
"qs": "^6.9.1",
"serve-favicon": "^2.5.0",
"socket.io-client": "^2.2.0",
"vee-validate": "^2.1.5",
"vue-echarts": "^4.0.4",
"vue-i18n": "^8.7.0",
"winston": "^3.1.0",
"xml-loader": "^1.2.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^5.11.1",
"eslint-utils": ">=1.4.1",
"lodash.template": ">=4.5.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"request": "^2.88.0",
"request-promise": "^4.2.2"
}
}