-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
83 lines (83 loc) · 2.34 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "buefy-shop",
"version": "0.0.1",
"description": "A sample shop",
"author": "14nrv",
"private": true,
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development nuxt",
"build": "NODE_ENV=production nuxt build",
"analyze": "ANALYZE=true nuxt build",
"start": "NODE_ENV=production nuxt start",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint-staged": "lint-staged",
"test": "NODE_ENV=test jest",
"test:tdd": "yarn test --watchAll --coverage",
"test:coverage": "yarn test --coverage"
},
"pre-commit": "lint-staged, test",
"lint-staged": {
"*.js": "eslint --ext .js",
"*.vue": "eslint --ext .vue"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
"@nuxtjs/google-analytics": "^2.0.2",
"@nuxtjs/pwa": "^3.3.5",
"axios": "^0.21.1",
"bulma": "^0.9.1",
"bulma-steps": "^2.2.1",
"bulma-switch": "^2.0.0",
"firebase": "^8.3.0",
"lazysizes": "^5.2.2",
"nuxt": "^2.15.3",
"slugify": "^1.3.0",
"vue-form-json": "^3.4.1",
"vue-stripe-elements-plus": "^0.3.2",
"vuex-persistedstate": "^2.5.2",
"vuexfire": "^3.2.5"
},
"devDependencies": {
"@babel/preset-env": "^7.13.10",
"@nuxtjs/dotenv": "^1.4.1",
"@types/jest": "^26.0.15",
"@vue/test-utils": "^1.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"css-loader": "^5.1.2",
"eslint": "^7.21.0",
"eslint-config-standard": "^16.0.2",
"eslint-junit": "^1.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"jest-vue-matcher": "^2.0.0",
"lint-staged": "^6.1.0",
"postcss-preset-env": "^6.7.0",
"pre-commit": "^1.2.2",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"stylus": "^0.54.8",
"stylus-loader": "4.3.3",
"vue-jest": "^3.0.7"
},
"jest-junit": {
"output": "coverage/junit/js-test-results.xml"
},
"eslint-junit": {
"output": "coverage/junit/js-eslint-results.xml"
},
"engines": {
"node": ">=12.18.2"
}
}