This repository was archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.68 KB
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
{
"name": "dcyou.github.io",
"version": "1.3.2",
"description": "David Turbert Resume",
"author": "dcyou",
"private": true,
"scripts": {
"dev": "nuxt",
"start": "nuxt start",
"test": "jest",
"test-update": "jest --updateSnapshot",
"test-travis": "jest --coverage | coveralls",
"build": "DEPLOY_ENV=GH_PAGES npx nuxt build",
"generate": "DEPLOY_ENV=GH_PAGES npx nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@vue/vue2-jest": "^28.1.0",
"element-ui": "^2.15.10",
"nuxt": "^2.15.8",
"snyk": "^1.1005.0",
"vue-github-buttons": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^8.3.4",
"@fortawesome/fontawesome-free": "^5.10.1",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-eslint": "^10.0.3",
"babel-jest": "^28.1.0",
"coveralls": "^3.0.6",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.1.2",
"faker": "^4.1.0",
"husky": "^4.3.8",
"jest": "^28.0.3",
"jest-serializer-vue": "^2.0.2",
"js-yaml": "^3.13.1",
"node-sass": "^4.0.0",
"prettier": "^1.18.2",
"raw-loader": "^4.0.0",
"sass-loader": "^8.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"snyk": true
}