-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "numlinet",
"version": "1.0.2",
"description": "Personal website of Martin Krajčovič",
"author": "Martin Krajcovic",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore ."
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/content": "^1.11.1",
"@nuxtjs/axios": "^5.9.5",
"dayjs": "^1.10.4",
"nuxt": "^2.11.0",
"nuxt-ackee": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/eslint-parser": "^7.12.1",
"@nuxtjs/eslint-config": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.0",
"@nuxtjs/tailwindcss": "^1.3.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^7.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"webpack": "^4.0.0"
}
}