This repository has been archived by the owner on Nov 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"name": "lamkieu",
"description": "",
"version": "0.0.0",
"homepage": "",
"main": "server",
"keywords": [
"feathers"
],
"author": {
"name": "Lâm Kiều",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "server"
},
"engines": {
"node": ">= 6.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"dev": "cross-env DEBUG=nuxt:* nodemon --watch server/ --watch config/ server/index.js",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/",
"test": "npm run eslint && npm run mocha",
"eslint": "eslint server/. test/. --config .eslintrc.json",
"mocha": "mocha test/ --recursive"
},
"dependencies": {
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"cors": "^2.8.3",
"cross-env": "^4.0.0",
"eslint": "^3.19.0",
"feathers": "^2.1.1",
"feathers-authentication": "^1.2.2",
"feathers-authentication-hooks": "^0.1.2",
"feathers-authentication-jwt": "^0.3.1",
"feathers-authentication-local": "^0.3.4",
"feathers-configuration": "^0.4.1",
"feathers-errors": "^2.6.3",
"feathers-hooks": "^2.0.0",
"feathers-hooks-common": "^3.0.0",
"feathers-rest": "^1.7.2",
"feathers-sequelize": "^1.4.5",
"feathers-socketio": "^1.5.2",
"helmet": "^3.5.0",
"mocha": "^3.2.0",
"nuxt": "^0.10.5",
"pg": "^6.1.5",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"sequelize": "^3.30.4",
"serve-favicon": "^2.4.2",
"winston": "^2.3.1"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}