-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "colonycdappauthproxy",
"version": "1.0.0",
"description": "Proxy Authentication Service intended to replace AWS_LAMBDA authentication until amplify starts working correctly locally",
"main": "build/index.js",
"dependencies": {
"@colony/core": "^2.0.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"http-proxy-middleware": "^2.0.6",
"node-fetch": "2.6",
"siwe": "^2.1.4",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/cors": "^2.8.16",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/graphql": "^14.5.0",
"@types/node": "^20.9.0",
"@types/node-fetch": "^2.6.9",
"@types/ws": "^8.5.10",
"dotenv": "^16.3.1",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"scripts": {
"dev": "NODE_ENV=dev nodemon",
"clean": "rimraf build",
"build": "npm run clean && tsc && tsc-alias",
"prod": "npm run build && node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoinColony/colonyCDappAuthProxy.git"
},
"author": "Raul <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoinColony/colonyCDappAuthProxy/issues"
},
"homepage": "https://github.com/JoinColony/colonyCDappAuthProxy#readme"
}