forked from AutomaApp/automa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.57 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
{
"name": "automa",
"version": "0.4.6",
"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",
"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": {
"@medv/finder": "^2.1.0",
"@vuex-orm/core": "^0.36.4",
"@webcomponents/custom-elements": "^1.5.0",
"dayjs": "^1.10.7",
"drawflow": "^0.0.51",
"mousetrap": "^1.6.5",
"nanoid": "3.1.28",
"object-path-immutable": "^4.1.2",
"papaparse": "^5.3.1",
"prismjs": "^1.25.0",
"tiny-emitter": "^2.1.0",
"tippy.js": "^6.3.1",
"v-remixicon": "^0.1.1",
"vue": "3.2.19",
"vue-prism-editor": "^2.0.0-alpha.2",
"vue-router": "^4.0.11",
"vue-virtual-scroller": "^2.0.0-alpha.1",
"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/plugin-proposal-class-properties": "7.14.5",
"@babel/preset-env": "7.15.6",
"@vue/compiler-sfc": "3.2.19",
"archiver": "^5.3.0",
"autoprefixer": "10.3.6",
"babel-eslint": "^10.1.0",
"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-flowtype": "6.1.0",
"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",
"style-loader": "3.3.0",
"tailwindcss": "2.2.16",
"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"
}
}