-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.93 KB
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
{
"name": "quasar-ui-my-open-vdp",
"version": "1.0.0",
"author": "project@yeswehack.com",
"description": "A form to anonymously disclose vulnerabilities",
"license": "MIT",
"module": "dist/index.esm.js",
"main": "dist/index.common.js",
"scripts": {
"dev": "echo 'Entering ./dev' && cd dev && yarn install && yarn dev",
"dev:umd": "yarn build && node build/script.open-umd.js",
"dev:ssr": "echo 'Entering ./dev' && cd dev && yarn install && yarn 'dev:ssr'",
"dev:ios": "echo 'Entering ./dev' && cd dev && yarn install && yarn 'dev:ios'",
"dev:android": "echo 'Entering ./dev' && cd dev && yarn install && yarn 'dev:android'",
"dev:electron": "echo 'Entering ./dev' && cd dev && yarn install && yarn 'dev:electron'",
"build": "node build/index.mjs",
"mkdocs": "node build/script.docs.mjs",
"lint": "$(yarn bin eslint) --ext .js,.ts,.vue ./src && echo 'Entering ./dev' && cd dev && yarn install && yarn lint",
"format": "$(yarn bin prettier) --write \"./{src,build}/**/*.{js,mjs,ts,vue,scss,html,md,json}\" --ignore-path .gitignore && echo 'Entering ./dev' && cd dev && yarn install && yarn format"
},
"repository": {
"type": "git",
"url": "https://github.com/yeswehack/my-open-vdp"
},
"bugs": "https://github.com/yeswehack/my-open-vdp/issues",
"homepage": "https://github.com/yeswehack/my-open-vdp",
"devDependencies": {
"@quasar/app-vite": "^1.0.0",
"@quasar/extras": "^1.0.0",
"@quasar/vite-plugin": "^1.1.0",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"@types/dateformat": "^5.0.0",
"@types/node": "^12.20.21",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vitejs/plugin-vue": "^3.0.1",
"@vue/compiler-sfc": "^3.2.11",
"autoprefixer": "^10.0.2",
"chalk": "^4.1.0",
"core-js": "^3.0.0",
"cssnano": "^4.1.10",
"cvss": "^1.0.5",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-vue": "^8.1.0",
"fs-extra": "^8.1.0",
"jszip": "^3.10.0",
"markdown-it": "^13.0.1",
"open": "^7.3.0",
"openpgp": "^5.1.0",
"postcss": "^8.1.9",
"prettier": "^2.5.1",
"quasar": "^2.0.0",
"rimraf": "^3.0.0",
"rollup": "^2.45.0",
"rollup-plugin-vue": "^6.0.0",
"rtlcss": "^2.6.1",
"sass": "1.32.0",
"typescript": "^4.5.5",
"uglify-js": "^3.13.3",
"vite": "^3.0.2",
"vue": "^3.2.29",
"vue-i18n": "^9.1.10",
"vue-router": "^4.0.12",
"zlib": "^1.0.5"
},
"browserslist": [
"last 4 Chrome versions",
"last 4 Firefox versions",
"last 2 Edge versions",
"last 4 Safari versions",
"last 4 Android versions",
"last 4 ChromeAndroid versions",
"last 4 FirefoxAndroid versions",
"last 4 iOS versions"
],
"dependencies": {
"dateformat": "^5.0.3"
}
}