-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.51 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
98
99
{
"name": "mynewpath",
"description": "",
"version": "0.0.0",
"homepage": "",
"main": "server/src",
"keywords": [
"feathers"
],
"author": {
"name": "JJ Johnson",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "server/src",
"test": "test/"
},
"engines": {
"node": "^9.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run eslint && npm run mocha",
"eslint": "eslint server/src/. server/test/. --config server/.eslintrc.json",
"start": "vue-cli-service serve --open",
"server": "cd server && node src/",
"test:unit": "vue-cli-service test:unit",
"mocha": "mocha server/test/ --recursive --exit",
"build": "vue-cli-service build",
"lint": "vue-cli-service test:unit"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.5",
"@feathersjs/authentication-client": "^1.0.2",
"@feathersjs/authentication-jwt": "^2.0.1",
"@feathersjs/authentication-local": "^1.2.1",
"@feathersjs/configuration": "^1.0.1",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.1.2",
"@feathersjs/feathers": "^3.1.5",
"@feathersjs/socketio": "^3.2.1",
"@feathersjs/socketio-client": "^1.1.0",
"babel-polyfill": "^6.26.0",
"compression": "^1.7.2",
"cors": "^2.8.4",
"feathers-mongoose": "^6.1.1",
"helmet": "^3.12.0",
"mongoose": "^5.1.1",
"register-service-worker": "^1.0.0",
"serve-favicon": "^2.5.0",
"socket.io-client": "^2.1.1",
"vue": "^2.5.16",
"vue-quill-editor": "^3.0.6",
"vue-router": "^3.0.1",
"vuetify": "^1.0.18",
"winston": "^2.4.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-beta.10",
"@vue/cli-plugin-eslint": "^3.0.0-beta.10",
"@vue/cli-plugin-pwa": "^3.0.0-beta.10",
"@vue/cli-plugin-unit-mocha": "^3.0.0-beta.10",
"@vue/cli-service": "^3.0.0-beta.10",
"@vue/eslint-config-prettier": "^3.0.0-beta.10",
"@vue/test-utils": "^1.0.0-beta.10",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"mocha": "^5.1.1",
"request": "^2.86.0",
"request-promise": "^4.2.2",
"vue-template-compiler": "^2.5.13"
},
"babel": {
"presets": [
"@vue/app"
]
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:vue/essential",
"@vue/prettier"
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}