-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.19 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
{
"name": "vue-paper-dashboard-nuxtjs",
"version": "1.0.0",
"description": "NuxtJs version of vue paper dashboard",
"author": "Anass Ez-Zouaine <[email protected]>",
"private": false,
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "3000"
}
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"nuxt": "^1.0.0",
"bootstrap": "^4.0.0",
"chartist": "^0.11.0",
"vue-clickaway": "^2.1.0",
"vue-notifyjs": "^0.3.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"coffee-loader": "^0.9.0",
"coffeescript": "^2.3.1",
"eslint": "^4.15.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.0.0",
"node-sass": "^4.9.3",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"sass-loader": "^7.1.0"
},
"engines": {
"node": ">= 8.1.4",
"npm": ">= 5.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}