-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "front-end-challenge",
"version": "1.0.0",
"description": "Demonstrate my knowledge of Vue.js, Git, Design Patterns, Testing, HTML5, CSS3, and Problem Solving.",
"author": "Jacob Rex",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"test": "jest",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore ."
},
"precommit": "npm run lint",
"dependencies": {
"nuxt": "^2.0.0"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.27",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"jest": "^24.1.0",
"nuxt-svg-loader": "^1.2.0",
"postcss": "^7.0.27",
"postcss-custom-media": "^7.0.8",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nesting": "^7.0.1",
"postcss-preset-env": "^6.7.0",
"vue-jest": "^4.0.0-0"
},
"engines": {
"node": ">=12.16.1"
}
}