-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "DocBuilder",
"description": "Generic document builder.",
"author": "Wesley A. Zloza",
"version": "0.0.0",
"main": "dist/production/main.cjs.js",
"type": "commonjs",
"scripts": {
"electron:start": "node ./scripts/develop",
"electron:build": "node ./scripts/build",
"format:check": "npx prettier --check .",
"format:fix": "npx prettier --write .",
"lint": "npx eslint ."
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/pro-light-svg-icons": "^5.15.4",
"@fortawesome/pro-regular-svg-icons": "^5.15.4",
"@fortawesome/pro-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^3.0.0-5",
"angular-expressions": "^1.1.4",
"dateformat": "^4.5.1",
"docxtemplater": "^3.28.6",
"element-plus": "^2.0.1",
"flatted": "^3.2.4",
"lodash.assign": "^4.2.0",
"lodash.merge": "^4.6.2",
"pizzip": "^3.1.1",
"primeicons": "^5.0.0",
"primevue": "^3.11.1",
"uuid": "^8.3.2",
"vue": "^3.2.16",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^27.0.2",
"@types/lodash.assign": "^4.2.6",
"@types/lodash.merge": "^4.6.6",
"@types/uuid": "^8.3.3",
"@vitejs/plugin-vue": "^1.9.3",
"chalk": "^4.1.2",
"electron": "^16.0.5",
"electron-builder": "^22.13.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"listr": "^0.14.2",
"prettier": "2.4.1",
"rollup-plugin-auto-external": "^2.0.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"vite": "^2.6.4"
}
}