-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.22 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
100
101
102
103
104
105
106
{
"name": "landestool",
"version": "1.0.0",
"description": "Nuxt.js project",
"author": "",
"private": true,
"engines": {
"node": "10"
},
"scripts": {
"dev": "backpack dev",
"build": "nuxt build && backpack build",
"nuxt:build": "nuxt build --fix",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --config .eslintrc.js .",
"lint:fix": "eslint server/. server/test/. --config .eslintrc.js --fix",
"start": "node build/main.js",
"precommit": "npm run lint",
"test": "npm run lint && npm run test:server",
"test:server": "npm run mocha",
"mocha": "nyc --reporter=html --reporter=text mocha server/test/ --recursive --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"heroku-postbuild": "npm run build",
"styleguide": "vue-styleguidist server",
"styleguide:build": "vue-styleguidist build"
},
"dependencies": {
"@feathersjs/configuration": "^2.0.2",
"@feathersjs/authentication": "^2.1.9",
"@feathersjs/authentication-client": "^1.0.4",
"@feathersjs/authentication-jwt": "^2.0.3",
"@feathersjs/authentication-local": "^1.2.3",
"@feathersjs/client": "^3.6.0",
"@feathersjs/errors": "^3.3.2",
"@feathersjs/express": "^1.2.5",
"@feathersjs/feathers": "^3.2.1",
"@feathersjs/socketio": "^3.2.4",
"@feathersjs/socketio-client": "^1.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bootstrap": "^4.1.3",
"compression": "^1.7.3",
"cookie-storage": "^3.2.0",
"cors": "^2.8.4",
"feathers-authentication-hooks": "^0.3.0",
"cross-env": "^5.2.0",
"express": "^4.16.3",
"feathers-blob": "^2.0.1",
"feathers-hooks": "^2.1.2",
"feathers-populate-hook": "^0.2.3",
"feathers-hooks-common": "^4.17.3",
"feathers-mongoose": "^6.1.4",
"feathers-nedb": "^3.1.0",
"feathers-vuex": "^1.4.8",
"fs-blob-store": "^5.2.1",
"helmet": "^3.13.0",
"js-cookie": "^2.2.0",
"moment": "^2.22.2",
"mongoose": "^5.2.13",
"nedb": "^1.8.0",
"vue-bootstrap-datetimepicker": "^5.0.0",
"nuxt": "^1.4.2",
"serve-favicon": "^2.5.0",
"socket.io-client": "^2.1.1",
"source-map-support": "^0.5.9",
"vue": "^2.5.17",
"vue-avatar": "^2.1.6",
"vue-datetime-picker": "^0.2.1",
"vue-form-wizard": "^0.8.4",
"vue2-timepicker": "^0.1.4",
"vuejs-dialog": "^1.3.0",
"vue-password": "^1.2.0",
"vue2-dropzone": "^3.5.2",
"vuejs-datepicker": "^1.5.3",
"winston": "^3.1.0"
},
"babel": {
"presets": [
"es2015"
]
},
"directories": {
"lib": "server",
"test": "server/test/"
},
"devDependencies": {
"babel-eslint": "^10.0.0",
"babili-webpack-plugin": "0.1.1",
"eslint-config-standard": "^12.0.0",
"eslint": "^5.0.1",
"backpack-core": "^0.7.0",
"coveralls": "^3.0.2",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.14.0",
"nyc": "^12.0.1",
"mocha": "^5.2.0",
"node-sass": "^4.9.3",
"opencollective": "^1.0.3",
"sass-loader": "^7.1.0",
"supertest": "^3.1.0",
"vue-styleguidist": "^2.0.0"
}
}