-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "todo-plus",
"version": "1.0.0",
"description": "Nuxt.js project",
"author": "Torge Jürgensen <torge.juergensen@codeanker.de>",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "HOST=0.0.0.0 nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"config": {
"nuxt": {
"host": "0.0.0.0"
}
},
"dependencies": {
"feathers": "^2.2.3",
"feathers-hooks": "^2.1.2",
"feathers-socketio": "^2.0.1",
"feathers-vuex": "^1.0.4",
"nuxt": "^1.0.0-rc11",
"socket.io-client": "^2.0.4",
"vue-js-modal": "^1.3.4",
"vuetify": "^0.16.9"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1"
}
}