-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
71 lines (71 loc) · 1.99 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
{
"name": "find-mentor",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"data": "node generate.js",
"generate": "nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore . --fix",
"deploy:time": "node deploy.js",
"lint": "yarn lint:js",
"prettier": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"test:watch:all": "jest --watchAll"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier"
}
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^1.0.2",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/vue-fontawesome": "^2.0.0",
"@nuxt/content": "^1.9.0",
"@nuxt/markdown": "^0.0.21",
"@nuxtjs/color-mode": "1.1.1",
"@nuxtjs/feed": "^2.0.0",
"@nuxtjs/pwa": "^3.0.2",
"@nuxtjs/robots": "^2.4.2",
"@nuxtjs/sitemap": "^2.4.0",
"babel-core": "7.0.0-bridge.0",
"bootstrap": "^4.5.2",
"bootstrap-vue": "^2.17.3",
"core-js": "^3.6.5",
"got": "^11.8.0",
"husky": "^4.3.5",
"nuxt": "^2.14.6",
"nuxt-change-case": "^1.0.1",
"slugify": "^1.4.6",
"vue-clamp": "^0.3.1",
"vue-disqus": "^4.0.1",
"vue-infinite-loading": "^2.4.5",
"vue-tweet-embed": "^2.4.0"
},
"devDependencies": {
"@babel/preset-env": "^7.12.10",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/style-resources": "^1.0.0",
"@prettier/plugin-pug": "^1.13.1",
"@vue/test-utils": "^1.1.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.10.0",
"eslint-plugin-nuxt": "^1.0.0",
"jest": "^26.6.3",
"jest-transform-stub": "^2.0.0",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"pug": "^3.0.0",
"pug-plain-loader": "^1.1.0",
"sass-loader": "^10.1.0",
"vue-jest": "^3.0.7"
}
}