-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.29 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
{
"scripts": {
"test": "jest"
},
"engines": {
"node": ">=16.0.0 <17"
},
"jest": {
"roots": [
"spec/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleNameMapper": {
"@appjs(.*)$": "<rootDir>/app/javascript/$1",
"@assetsjs(.*)$": "<rootDir>/app/assets/javascripts/$1",
"@vendorjs(.*)$": "<rootDir>/vendor/assets/javascripts/$1",
"^.+\\.(css|less|scss)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"^.+\\.vue$": "@vue/vue2-jest"
}
},
"dependencies": {
"@braid/vue-formulate": "^2.5.3",
"@rails/webpacker": "^5.4.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/postcss7-compat": "^2.2.9",
"@tailwindcss/typography": "^0.5.2",
"airbrake-js": "^1.4.0",
"autoprefixer": "^10.4.7",
"axios": "^1.7.4",
"axios-case-converter": "^0.6.0",
"canvas": "^2.8.0",
"chart.js": "^2.7.2",
"chroma-js": "^1.3.7",
"cross-fetch": "^3.0.5",
"es6-promise": "^4.2.4",
"escape-string-regexp": "^4.0.0",
"filestack-js": "^3.32.0",
"flatpickr": "^4.2.4",
"i18n-js": "^4.1.1",
"ini": "1.3.8",
"lodash": "^4.17.19",
"luxon": "^2.5.0",
"node-notifier": "8.0.1",
"postcss": "^8.4.14",
"sweetalert2": "^10.0",
"tailwindcss": "^3.1.3",
"url-search-params": "^0.10.0",
"v-tooltip": "^2.0.2",
"vue": "^2.6.11",
"vue-dragula": "^1.3.1",
"vue-loader": "^15.9.3",
"vue-password-strength-meter": "^1.3.0",
"vue-router": "^3.0.1",
"vue-select": "https://github.com/Iridescent-CM/vue-select.git#iridescent-customization-from-v2.5.1",
"vue-template-compiler": "^2.6.11",
"vue-turbolinks": "^2.0.1",
"vue2-filters": "^0.3.0",
"vuex": "^3.0.1",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@vue/test-utils": "^1.0.3",
"@vue/vue2-jest": "26.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.1.0",
"dotenv": "^8.2.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"prettier": "2.7.1",
"webpack-dev-server": "^3.11.3"
}
}