-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.22 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
65
66
67
68
69
70
71
72
73
{
"name": "nuxt-starter",
"version": "1.4.1",
"description": "Starter project for Nuxt projects at Libeo",
"author": {
"name": "Libéo",
"email": "[email protected]",
"url": "https://www.libeo.com"
},
"contributors": [
{
"name": "Sébastien LeBlanc",
"email": "[email protected]"
},
{
"name": "Paul Côté",
"email": "[email protected]"
}
],
"private": true,
"engines": {
"node": ">14.0.0"
},
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"analyse": "nuxt build -a",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "yarn run lint:js && yarn run lint:scss",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:scss": "stylelint '**/*.{vue,scss}'"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/i18n": "^7.2.2",
"@nuxtjs/moment": "^1.6.1",
"@nuxtjs/sentry": "^5.1.7",
"@nuxtjs/svg": "^0.4.0",
"env": "^0.0.2",
"foundation-sites": "^6.7.4",
"minimist": "^1.2.6",
"nuxt": "^2.15.8",
"nuxt-speedkit": "^2.0.12",
"postcss": "8.4.13",
"vue-axios-interceptors": "^0.3.2",
"what-input": "^5.2.11",
"yarn": "^1.22.18"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^10.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/style-resources": "^1.2.1",
"@nuxtjs/stylelint-module": "^4.1.0",
"babel-eslint": "^10.1.0",
"babel-polyfill": "^6.26.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-smart-quotes": "^1.3.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"stylelint": "^14.8.2",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.2.0",
"stylelint-webpack-plugin": "^3.2.0",
"vue-svg-inline-loader": "^2.1.3"
}
}