-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.33 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": "nuxt-weather",
"version": "1.0.0",
"description": "Nuxt Weather, just yet another Nuxt.js project",
"author": "NicoPennec <nemohp@yahoo.fr>",
"private": true,
"engines": {
"node": ">=8",
"npm": ">=5",
"yarn": ">=1"
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"test": "npm run lint",
"analyze": "npm run build --analyze"
},
"dependencies": {
"@nuxtjs/axios": "^5.8.0",
"@nuxtjs/sitemap": "^2.0.1",
"babel-polyfill": "^6.26.0",
"chart.js": "^2.9.3",
"date-fns": "^2.8.1",
"nuxt": "^2.10.2",
"shrink-ray-current": "^4.1.2",
"vuex-persistedstate": "^2.7.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.0.1",
"json-loader": "^0.5.7",
"node-sass": "^4.13.0",
"prettier": "^1.19.1",
"sass-loader": "^8.0.0"
},
"optionalDependencies": {
"iltorb": "^2.4.4",
"node-zopfli-es": "^1.0.3"
}
}