forked from 14nrv/buefy-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.47 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
84
85
{
"name": "buefy-shop",
"version": "0.0.1",
"description": "Nuxt.js project",
"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": "NODE_ENV=test jest --watchAll --coverage",
"test:coverage": "NODE_ENV=test jest --coverage"
},
"pre-commit": "lint-staged, test",
"lint-staged": {
"*.js": "eslint --ext .js",
"*.vue": "eslint --ext .vue"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.1.0-4",
"@nuxtjs/dotenv": "^1.1.0",
"@nuxtjs/google-analytics": "^2.0.2",
"@nuxtjs/pwa": "^3.0.2",
"axios": "^0.18.0",
"bulma": "^0.7.1",
"bulma-steps": "^2.2.1",
"bulma-switch": "^2.0.0",
"firebase": "^7.21.0",
"lazysizes": "^4.0.2",
"nuxt": "^2.14.5",
"pug": "^2.0.0-rc.4",
"pug-plain-loader": "^1.0.0",
"slugify": "^1.3.0",
"stylus": "^0.54.5",
"vee-validate": "^2.0.5",
"vue-stripe-elements-plus": "^0.2.8",
"vuex-persistedstate": "^2.5.2",
"vuexfire": "^2.3.0"
},
"devDependencies": {
"@babel/polyfill": "^7.0.0-beta.40",
"@types/jest": "^23.0.0",
"@vue/test-utils": "1.0.0-beta.11",
"babel-eslint": "^8.2.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.9",
"eslint": "^4.16.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-junit": "^1.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.13.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.1.0",
"jest-junit": "^5.0.0",
"lint-staged": "^6.1.0",
"mwangaben-vthelpers": "^1.2.1",
"postcss-preset-env": "^6.7.0",
"pre-commit": "^1.2.2",
"stylus-loader": "^3.0.1",
"vue-jest": "^2.6.0"
},
"jest-junit": {
"output": "coverage/junit/js-test-results.xml"
},
"eslint-junit": {
"output": "coverage/junit/js-eslint-results.xml"
},
"engines": {
"node": ">=12.18.2"
}
}