-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.55 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
{
"name": "quitcost",
"private": true,
"scripts": {
"lint": "run-p lint:*",
"lint:eslint": "eslint 'app/javascript/**/*.{js,vue}' --max-warnings=0",
"lint:prettier": "prettier app/javascript/**/*.{js,vue} --check",
"test": "jest --passWithNoTests",
"test:unit": "jest --passWithNoTests /app/javascript/test/unit",
"test:integrations": "jest --passWithNoTests /app/javascript/test/integrations"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fullhuman/postcss-purgecss": "4",
"@hennge/vue3-pagination": "^1.0.17",
"@rails/ujs": "^6.0.0",
"@rails/webpacker": "5.4.3",
"@vue/compiler-sfc": "^3.2.26",
"@vueuse/core": "^7.6.2",
"autoprefixer": "^10.4.0",
"axios": "^0.26.0",
"axios-jsonp": "^1.0.4",
"choices.js": "^10.1.0",
"date-fns": "^2.28.0",
"maska": "^1.5.0",
"postcss": "^8.4.5",
"postcss-loader": "4",
"sweetalert2": "^11.3.6",
"tailwindcss": "^3.0.7",
"vee-validate": "^4.5.8",
"vue": "^3.2.26",
"vue-composable": "^1.0.0-beta.24",
"vue-loader": "^17.0.0",
"vue-router": "4",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"yup": "^0.32.11"
},
"version": "0.1.0",
"devDependencies": {
"@testing-library/dom": "^8.11.3",
"@testing-library/vue": "^6.5.1",
"@vue/test-utils": "^2.0.0-rc.17",
"@vue/vue3-jest": "27.0.0-alpha.4",
"babel-jest": "^27.5.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-vue": "^8.2.0",
"eslint-webpack-plugin": "^3.1.1",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"prettier-config-standard": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.1.8",
"webpack-dev-server": "^3"
},
"jest": {
"roots": [
"<rootDir>/app/javascript/test"
],
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "@vue/vue3-jest"
},
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/app/javascript/src/$1",
"^components/(.*)$": "<rootDir>/app/javascript/src/components/$1",
"^composables/(.*)$": "<rootDir>/app/javascript/src/composables/$1",
"^store/(.*)$": "<rootDir>/app/javascript/src/store/$1",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/app/javascript/test/mocks/fileMock.js"
}
}
}