-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "transpose",
"version": "0.0.1",
"description": "Nuxt + Feathers",
"author": "Cameron Blandford <[email protected]>",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "DEBUG=nuxt:* ./node_modules/.bin/nodemon --watch api/ --watch config/ api/index.js",
"prestart": "yarn run build",
"start": "NODE_ENV=production node api/",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "yarn run lint"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "api",
"test": "test/"
},
"engines": {
"node": "^10.0.0",
"yarn": ">= 0.18.0"
},
"dependencies": {
"@feathersjs/client": "^3.4.5",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.2",
"@feathersjs/feathers": "^3.1.5",
"@feathersjs/socketio": "^3.2.1",
"coffee-loader": "^0.9.0",
"coffeescript": "^2.3.1",
"compression": "^1.7.2",
"cookie-storage": "^3.1.0",
"cors": "^2.8.4",
"feathers-mongodb": "^3.1.0",
"feathers-mongodb-fuzzy-search": "^1.1.1",
"feathers-vuex": "^1.3.0",
"helmet": "^3.12.0",
"js-yaml": "^3.11.0",
"mongodb": "^3.1.0-beta4",
"node-sass": "^4.9.0",
"nodemon": "^1.17.4",
"nuxt": "^1.0.0",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"sass-loader": "^7.0.1",
"serve-favicon": "^2.5.0",
"winston": "^2.4.2"
},
"devDependencies": {
"axios": "^0.18.0",
"babel-eslint": "^8.2.1",
"eslint": "^4.19.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.0.0",
"mocha": "^5.1.1",
"request": "^2.85.0",
"request-promise": "^4.2.2"
}
}