-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.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
{
"name": "yana-prototype",
"version": "1.0.0",
"description": "Functional prototype for the YANA project.",
"author": "",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint-fix": "eslint --ext .js,.vue --ignore-path .gitignore --fix ."
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.9.7",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@nuxtjs/vuetify": "^1.11.0",
"date-fns": "^2.12.0",
"lodash": "^4.17.15",
"nanoid": "^3.1.3",
"nuxt": "^2.12.2",
"pdfmake": "^0.1.65",
"vue-simple-markdown": "^1.1.3",
"vuetify-dialog": "^2.0.2"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.2",
"@nuxtjs/eslint-module": "^1.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-nuxt": ">=0.5.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^2.6.0",
"lint-staged": "^8.2.1",
"prettier": "^1.16.4"
}
}