This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
forked from spruceid/siwe-notepad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.1 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
{
"name": "siwe-notepad-example",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "concurrently \"nodemon src/index.ts --ignore public/ --ignore db/ --ignore build/\" \"webpack --watch\"",
"build": "concurrently \"tsc\" \"webpack\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Spruce Systems Inc.",
"license": "MIT",
"dependencies": {
"@spruceid/ssx": "^1.0.0",
"@spruceid/ssx-server": "^1.0.0",
"@walletconnect/client": "^2.0.0-beta.20",
"@walletconnect/web3-provider": "^1.6.6",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"dotenv": "^10.0.0",
"ethers": "^5.5.1",
"events": "^3.3.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"helmet": "^4.6.0",
"https-browserify": "^1.0.0",
"morgan": "^1.10.0",
"mousetrap": "^1.6.5",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"session-file-store": "^1.5.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0",
"util": "^0.12.4"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/morgan": "^1.9.3",
"@types/mousetrap": "^1.6.8",
"@types/node": "^16.11.5",
"@types/pino": "^6.3.12",
"@types/session-file-store": "^1.2.2",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"autoprefixer": "^10.4.0",
"concurrently": "^6.3.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
}
}