forked from passportxyz/passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "@gitcoin/passport-iam",
"private": true,
"version": "1.0.0",
"main": "dist/src/main.js",
"types": "src/types.d.ts",
"license": "MIT",
"scripts": {
"clean": "rimraf dist node_modules",
"prebuild": "yarn run lint",
"build": "tsc",
"prestart": "yarn run build",
"start": "node .",
"prod:start": "tsc && node .",
"test": "jest --verbose",
"prettier": "prettier --write .",
"lint": "tsc --noEmit && eslint --ext .ts,.js,.tsx ."
},
"dependencies": {
"@gitcoin/passport-identity": "^1.0.0",
"@gitcoin/passport-types": "^1.0.0",
"@spruceid/didkit-wasm-node": "^0.2.1",
"axios": "^0.27.2",
"brightid_sdk": "^1.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"ethers": "^5.0.32",
"express": "4",
"google-auth-library": "^7.14.1",
"luxon": "^2.4.0",
"tslint": "^6.1.3",
"twitter-api-sdk": "1.0.6",
"typescript": "~4.6.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/luxon": "^2.3.2",
"@types/node": "16",
"@types/node-fetch": "latest",
"@types/supertest": "^2.0.12",
"@types/webpack-env": "^1.16.3",
"jest": "^27.5.1",
"supertest": "^6.2.2"
},
"resolutions": {
"leveldown": "6.1.1"
}
}