-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.48 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
{
"name": "app",
"private": true,
"dependencies": {
"@activeadmin/activeadmin": "^2.11.0",
"@babel/core": "7",
"@babel/plugin-transform-runtime": "7",
"@babel/preset-env": "7",
"@babel/runtime": "7",
"@fortawesome/fontawesome-free": "^6.1.0",
"@types/node": "^17.0.21",
"@types/tailwindcss": "^3.0.9",
"@vue/test-utils": "^2.0.0-rc.18",
"@vue/vue3-jest": "^27.0.0-alpha.1",
"active-admin-alpinejs-fixes": "^0.0.3",
"activeadmin_addons": "^1.0.0",
"alpinejs": "^3.9.1",
"arctic_admin": "^4.0.2",
"autoprefixer": "^10",
"babel-jest": "^27.5.1",
"babel-loader": "8",
"babel-preset-typescript-vue3": "^2.0.16",
"compression-webpack-plugin": "9",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint-plugin-tailwindcss": "^3.5.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"jest": "^27.5.1",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8",
"postcss-loader": "^6.2.1",
"rut-helpers": "^0.1.1",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"shakapacker": "6.1.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3",
"terser-webpack-plugin": "5",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2",
"vue": "^3",
"vue-loader": "^16",
"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": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"@vue/eslint-config-typescript": "^10.0.0",
"eslint": "^8.11.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-vue": "^8.5.0",
"stylelint": "^14.6.0",
"webpack-dev-server": "^4.7.4"
},
"engines": {
"node": "14.x"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch"
},
"jest": {
"roots": [
"app/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"moduleNameMapper": {
"^@/(.*)$": "app/javascript/$1"
},
"moduleFileExtensions": [
"js",
"ts",
"json",
"vue"
],
"transform": {
"^.+\\.ts$": "ts-jest",
".*\\.(vue)$": "@vue/vue3-jest"
},
"testEnvironment": "jsdom"
}
}