forked from AutomaApp/automa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "automa",
"version": "1.6.3",
"description": "An extension for automating your browser by connecting blocks",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kholid060/automa.git"
},
"scripts": {
"build": "node utils/build.js",
"build:zip": "node utils/build-zip.js",
"build:prod": "yarn build && yarn build:zip",
"dev": "node utils/webserver.js",
"prettier": "prettier --write '**/*.{js,jsx,css,html}'",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix"
},
"dependencies": {
"@codemirror/basic-setup": "^0.19.1",
"@codemirror/fold": "^0.19.3",
"@codemirror/lang-javascript": "^0.19.7",
"@codemirror/lang-json": "^0.19.2",
"@codemirror/theme-one-dark": "^0.19.1",
"@medv/finder": "^2.1.0",
"@tiptap/extension-character-count": "^2.0.0-beta.24",
"@tiptap/extension-image": "^2.0.0-beta.25",
"@tiptap/extension-link": "^2.0.0-beta.36",
"@tiptap/extension-placeholder": "^2.0.0-beta.48",
"@tiptap/starter-kit": "^2.0.0-beta.181",
"@tiptap/vue-3": "^2.0.0-beta.90",
"@vuex-orm/core": "^0.36.4",
"compare-versions": "^4.1.2",
"crypto-js": "^4.1.1",
"css-selector-generator": "^3.6.0",
"dayjs": "^1.10.7",
"defu": "^5.0.1",
"drawflow": "^0.0.51",
"idb": "^7.0.0",
"mitt": "^3.0.0",
"mousetrap": "^1.6.5",
"nanoid": "^3.2.0",
"object-path": "^0.11.8",
"papaparse": "^5.3.1",
"tippy.js": "^6.3.1",
"v-remixicon": "^0.1.1",
"vue": "^3.2.31",
"vue-i18n": "^9.2.0-beta.29",
"vue-router": "^4.0.11",
"vue-toastification": "^2.0.0-rc.5",
"vuedraggable": "^4.1.0",
"vuex": "^4.0.2",
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/eslint-parser": "7.15.7",
"@babel/preset-env": "7.15.6",
"@intlify/vue-i18n-loader": "^4.0.1",
"@tailwindcss/typography": "^0.5.1",
"@vue/compiler-sfc": "3.2.19",
"archiver": "^5.3.0",
"autoprefixer": "10.3.6",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "9.0.1",
"core-js": "3",
"css-loader": "5.2.7",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "7.18.0",
"file-loader": "^6.2.0",
"fs-extra": "10.0.0",
"html-loader": "2.1.2",
"html-webpack-plugin": "5.3.2",
"lint-staged": "^11.1.2",
"mini-css-extract-plugin": "^2.3.0",
"postcss": "8.3.8",
"postcss-loader": "^6.1.1",
"prettier": "^2.4.1",
"simple-git-hooks": "^2.6.1",
"source-map-loader": "3.0.0",
"tailwindcss": "^3.0.7",
"terser-webpack-plugin": "5.2.4",
"vue-loader": "16.8.1",
"webpack": "5.55.1",
"webpack-cli": "4.8.0",
"webpack-dev-server": "3.11.2"
}
}