-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.84 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
{
"name": "fill-excel-data-to-form",
"version": "3.0.0",
"description": "Fill Excel Sheet Data into HTML Online Forms",
"author": "Jeevan Lal <jeevan15498@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"prettier": "prettier \"src/**/*.{js,vue}\"",
"prettier:write": "npm run prettier -- --write",
"build": "cross-env NODE_ENV=production webpack --hide-modules",
"build:dev": "cross-env NODE_ENV=development webpack --hide-modules",
"build-zip": "node scripts/build-zip.js",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch"
},
"dependencies": {
"buefy": "^0.9.4",
"bulma-extensions": "^6.2.7",
"chalk": "^4.1.0",
"clipboard": "^2.0.6",
"exceljs": "^4.1.1",
"file-get-contents": "^1.0.0",
"file-saver": "^2.0.2",
"fs": "0.0.1-security",
"fs-extra": "^9.0.1",
"vue": "^2.6.10",
"vue-codemirror": "^4.0.6",
"vue-router": "^3.4.2",
"webextension-polyfill": "^0.3.1",
"xlsx": "^0.16.5"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/runtime-corejs3": "^7.11.2",
"@types/node": "^14.0.27",
"archiver": "^3.0.0",
"babel-loader": "^8.0.2",
"babel-minify": "^0.5.1",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.0.1",
"cross-env": "^5.2.0",
"css-loader": "^3.6.0",
"ejs": "^2.6.1",
"file-loader": "^5.0.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"sass-loader": "^7.1.0",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.10",
"web-ext-types": "^2.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-extension-reloader": "^1.1.0",
"webpack-notifier": "^1.12.0"
}
}