forked from platanus/fdbk-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.19 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "app",
"private": true,
"dependencies": {
"@activeadmin/activeadmin": "^2.13.1",
"@babel/core": "7",
"@babel/plugin-transform-runtime": "7",
"@babel/preset-env": "7",
"@babel/runtime": "7",
"@fortawesome/fontawesome-free": "^6.2.0",
"@rails/ujs": "^7.0.4",
"@sipec/vue3-tags-input": "^3.0.4",
"@tailwindcss/forms": "^0.5.3",
"@tanstack/vue-query": "^4.34.0",
"@types/humps": "^2.0.2",
"@types/node": "^18.11.9",
"@types/rails__ujs": "^6.0.1",
"@types/tailwindcss": "^3.1.0",
"activeadmin_addons": "^1.0.0",
"arctic_admin": "^4.0.2",
"autoprefixer": "^10",
"axios": "^1.1.3",
"babel-loader": "8",
"babel-preset-typescript-vue3": "^2.0.17",
"compression-webpack-plugin": "9",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint-plugin-tailwindcss": "^3.7.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"humps": "^2.0.1",
"mini-css-extract-plugin": "^2.6.1",
"mjml": "^4.13.0",
"postcss": "^8",
"postcss-loader": "^7.0.1",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"shakapacker": "6.2.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3",
"terser-webpack-plugin": "5",
"ts-loader": "^9.4.1",
"type-fest": "^3.2.0",
"typescript": "^4.8.4",
"vue": "^3.2.33",
"vue-inline-svg": "^3.1.0",
"vue-loader": "^16.8.3",
"webpack": "5",
"webpack-assets-manifest": "5",
"webpack-cli": "4",
"webpack-merge": "5"
},
"version": "0.1.0",
"babel": {
"presets": [
"./node_modules/shakapacker/package/babel/preset.js"
]
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@types/jest": "^28.0.1",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.0.2",
"@vue/vue3-jest": "^28.0.1",
"babel-jest": "^28.0.1",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-platanus": "^0.1.0",
"eslint-plugin-vue": "^9.7.0",
"jest": "^28.0.1",
"jest-environment-jsdom": "^28.0.1",
"jest-text-formatter": "1.0.2",
"stylelint": "^14.14.1",
"ts-jest": "^28.0.1",
"vue-tsc": "^1.0.9",
"webpack-dev-server": "^4.11.1"
},
"engines": {
"node": "20.x"
},
"scripts": {
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:changes": "jest --changedSince=master"
},
"jest": {
"roots": [
"app/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"moduleNameMapper": {
"^@/(.*)$": "app/javascript/$1"
},
"testEnvironmentOptions": {
"customExportConditions": [
"node",
"node-addons"
]
},
"moduleFileExtensions": [
"js",
"ts",
"json",
"vue"
],
"transform": {
"^.+\\.ts$": "ts-jest",
".*\\.(vue)$": "@vue/vue3-jest"
},
"testEnvironment": "jsdom",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,ts,vue}",
"!**/node_modules/**"
],
"coverageReporters": [
"text"
]
}
}