-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.72 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.72 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
{
"name": "trello-clone-server",
"version": "0.0.0",
"description": "trello clone",
"author": {
"name": "Tyler Gregg",
"email": "[email protected]"
},
"scripts": {
"test": "npm run eslint && NODE_ENV= npm run mocha",
"dev": "nodemon src/",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"mocha": "mocha test/ --recursive --exit",
"start": "node src/"
},
"dependencies": {
"@babel/polyfill": "^7.0.0-rc.1",
"@feathersjs/authentication": "^2.1.13",
"@feathersjs/authentication-jwt": "^2.0.7",
"@feathersjs/authentication-local": "^1.2.7",
"@feathersjs/configuration": "^2.0.4",
"@feathersjs/errors": "^3.3.4",
"@feathersjs/express": "^1.2.7",
"@feathersjs/feathers": "^3.2.3",
"@feathersjs/socketio": "^3.2.7",
"compression": "^1.7.3",
"cors": "^2.8.5",
"feathers-authentication-hooks": "^0.3.1",
"feathers-mongodb": "^3.4.0",
"feathers-mongoose": "^6.3.0",
"helmet": "^3.15.0",
"material-design-icons-iconfont": "^3.0.3",
"mongodb": "^3.1.10",
"mongodb-core": "^3.1.9",
"mongoose": "^5.3.12",
"roboto-fontface": "*",
"serve-favicon": "^2.5.0",
"vuetify": "^1.3.0",
"winston": "^3.1.0"
},
"devDependencies": {
"eslint": "^5.9.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue-cli-plugin-vuetify": "^0.4.6",
"vuetify-loader": "^1.0.5"
},
"bugs": {},
"contributors": [],
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": "^8.0.0",
"npm": ">= 3.0.0"
},
"homepage": "",
"keywords": [
"feathers"
],
"main": "src"
}