This repository has been archived by the owner on Feb 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
125 lines (125 loc) · 4.13 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "web3pass",
"version": "2.1.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "webpack serve --mode development",
"build:dev": "PAGE_ENV=development webpack --mode production",
"build": "webpack --mode production",
"prepare": "husky install",
"serv": "node server.js",
"serv:dev": "npm run build:dev && npm run serv",
"serv:prod": "npm run build && npm run serv",
"start": "npm run serv",
"pretty": "prettier --write \"./**/*.{js,vue,json}\"",
"generateAnalyzeFile": "webpack --profile --json > stats.json",
"analyze": "webpack-bundle-analyzer --port 8888 ./dist/stats.json"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NaturalSelectionLabs/Web3Pass.git"
},
"keywords": [
"RSS3"
],
"license": "GPL-3.0",
"author": "NaturalSelectionLabs",
"bugs": {
"url": "https://github.com/NaturalSelectionLabs/Web3Pass/issues"
},
"homepage": "https://github.com/NaturalSelectionLabs/Web3Pass#readme",
"dependencies": {
"@babel/runtime": "7.17.9",
"@koa/cors": "3.2.0",
"@koa/router": "10.1.1",
"@sentry/tracing": "6.18.2",
"@sentry/vue": "6.19.6",
"@walletconnect/web3-provider": "1.7.4",
"assert": "2.0.0",
"async-lock": "1.3.1",
"axios": "0.26.1",
"boxicons": "2.1.1",
"buffer": "6.0.3",
"canvas-confetti": "1.5.1",
"crypto-browserify": "3.12.0",
"ejs": "3.1.6",
"ethers": "5.6.2",
"https-browserify": "1.0.0",
"js-cookie": "3.0.1",
"koa": "2.13.4",
"koa-sslify": "5.0.0",
"koa-static": "5.0.0",
"koa-views": "8.0.0",
"lodash": "4.17.21",
"marked": "4.0.12",
"mitt": "3.0.0",
"moment": "2.29.3",
"os-browserify": "0.3.0",
"postcss-nested": "5.0.6",
"qrcode": "1.5.0",
"raw-loader": "4.0.2",
"rss3": "0.8.19",
"stream-browserify": "3.0.0",
"stream-http": "3.2.0",
"tailwind-scrollbar-hide": "1.1.7",
"typescript": "4.6.3",
"vue": "3.2.33",
"vue-class-component": "8.0.0-rc.1",
"vue-gtag": "2.0.1",
"vue-hotjar": "1.4.0",
"vue-lottie": "0.2.1",
"vue-moment": "4.1.0",
"vue-recaptcha-v3": "2.0.1",
"vue3-autocounter": "1.0.6",
"vuedraggable": "4.1.0",
"webpack-bundle-analyzer": "4.5.0"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/plugin-proposal-decorators": "7.17.2",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@tailwindcss/aspect-ratio": "0.4.0",
"@tailwindcss/line-clamp": "0.3.1",
"@types/async-lock": "1.1.3",
"@types/canvas-confetti": "1.4.2",
"@types/chrome": "0.0.180",
"@types/js-cookie": "3.0.1",
"@types/lodash": "4.14.181",
"@types/marked": "4.0.2",
"@types/qrcode": "1.4.2",
"@vue/compiler-sfc": "3.2.31",
"autoprefixer": "10.4.2",
"babel-loader": "8.2.4",
"boxicons": "2.1.1",
"compression-webpack-plugin": "9.2.0",
"copy-webpack-plugin": "10.2.4",
"css-loader": "6.7.1",
"cssnano": "5.1.0",
"html-webpack-plugin": "5.5.0",
"husky": "7.0.4",
"js-conditional-compile-loader": "1.0.15",
"less-loader": "10.2.0",
"lint-staged": "12.3.5",
"postcss": "8.4.12",
"postcss-loader": "6.2.1",
"prettier": "2.6.2",
"prettier-plugin-tailwindcss": "0.1.8",
"tailwindcss": "3.0.23",
"terser-webpack-plugin": "5.3.1",
"ts-loader": "9.2.8",
"url-loader": "4.1.1",
"vue-loader": "17.0.0",
"vue-router": "4.0.14",
"vue-style-loader": "4.1.3",
"vue-template-compiler": "2.6.14",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4"
}
}