forked from maglevhq/maglev-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.08 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": "maglev",
"private": true,
"scripts": {
"prettier-format": "prettier --config .prettierrc 'app/javascript/**/*.{vue,js}' --write",
"test": "jest"
},
"dependencies": {
"axios": "^0.21.1",
"camelcase-object-deep": "^1.1.3",
"normalizr": "^3.6.1",
"stimulus": "^2.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"tiptap": "^1.31.0",
"tiptap-extensions": "^1.34.0",
"turbolinks": "^5.2.0",
"v-tooltip": "^2.1.3",
"vue": "^2.6.12",
"vue-i18n": "^8.21.1",
"vue-loader": "^15.9.3",
"vue-router": "^3.4.4",
"vue-template-compiler": "^2.6.12",
"vue-window-size": "0.6.2",
"vuedraggable": "^2.24.3",
"vuex": "^3.5.1"
},
"version": "0.1.0",
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@rails/webpacker": "5.4.3",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.3.0",
"autoprefixer": "^9",
"babel-jest": "^27.4.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.30.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.13.0",
"install": "^0.13.0",
"jest": "^27.4.5",
"postcss": "^7.0.36",
"prettier": "^2.3.2",
"vue-svg-loader": "^0.17.0-beta.2",
"webpack-dev-server": "^3.11.3"
},
"resolutions": {
"prosemirror-model": "^1.11.2",
"glob-parent": "^5.1.2",
"nth-check": "^2.0.1",
"ansi-regex": "^5.0.1",
"node-forge": "^1.3.0",
"postcss": "^7.0.36",
"minimist": "^1.2.6",
"eventsource": "^1.1.1",
"terser": "^5.14.2",
"async": "^2.6.4"
},
"jest": {
"roots": [
"app/javascript/editor"
],
"testMatch": [
"**/__tests__/**/*.spec.js"
],
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleNameMapper": {
"@/(.*)$": "<rootDir>/app/javascript/editor/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"testEnvironment": "jsdom"
}
}