-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.76 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
{
"name": "lets-auth-extension",
"version": "1.0.0",
"description": "Chrome extension for Let's Authenticate",
"author": "njf26 <[email protected]>",
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "eslint --ext .js,.vue src",
"prettier": "prettier \"src/**/*.{js,vue}\"",
"prettier:write": "npm run prettier -- --write",
"build": "cross-env NODE_ENV=production webpack",
"build:dev": "cross-env NODE_ENV=development webpack",
"build-zip": "node scripts/build-zip.js",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@fidm/x509": "^1.2.1",
"@pdfme/generator": "^1.0.14",
"axios": "^0.27.2",
"base64url": "^3.0.1",
"bcrypt": "^5.0.1",
"buffer": "^6.0.3",
"child_process": "^1.0.2",
"cors": "^2.8.5",
"css-loader": "^6.7.1",
"dexie-encrypted": "^2.0.0",
"ec-key": "0.0.4",
"get-random-values": "^2.0.0",
"gulp-sass": "^5.1.0",
"jspdf": "^2.5.1",
"mini-css-extract-plugin": "^2.6.1",
"nan": "^2.16.0",
"net": "^1.0.2",
"node-forge": "^1.3.1",
"node-geocoder": "^4.2.0",
"scrypt-js": "^3.0.1",
"secure-ls": "^1.2.6",
"tslib": "^2.4.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"utf8": "^3.0.0",
"util": "^0.12.4",
"uuid": "^8.3.2",
"vue": "^3.2.37",
"vue-router": "^4.1.2",
"vuex": "^4.0.2",
"webextension-polyfill": "^0.9.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/runtime-corejs3": "^7.18.6",
"@types/node-forge": "^1.0.4",
"archiver": "^5.3.1",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.23.4",
"cross-env": "^7.0.3",
"crypto-browserify": "^3.12.0",
"dexie": "^3.2.2",
"ejs": "^3.1.8",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^9.2.0",
"file-loader": "^6.2.0",
"husky": "^8.0.1",
"json-loader": "^0.5.7",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"stream-browserify": "^3.0.0",
"url": "^0.11.0",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.7.6",
"web-ext-types": "^3.2.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}