-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
{
"name": "powerstack-auth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": "",
"license": "UNLICENSED",
"scripts": {
"dev": "env-cmd ts-node-dev --no-deps --no-notify --respawn src/index",
"start": "env-cmd node ./dist",
"build": "tsc -b",
"lint": "eslint --ignore-path .gitignore \"**/*.+(js|ts|tsx)\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"prisma-gen": "prisma db pull && prisma generate"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@blockmatic/eslint-config": "^2.0.0",
"@blockmatic/prettier-config": "^2.1.0",
"@types/node": "^18.7.13",
"env-cmd": "^10.1.0",
"eslint": "8",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prisma": "^4.2.1",
"typescript": "^4.8.2"
},
"dependencies": {
"@greymass/eosio": "^0.6.3",
"@prisma/client": "^4.2.1",
"@superfaceai/passport-twitter-oauth2": "^1.0.0",
"@types/cors": "^2.8.12",
"@types/express-session": "^1.17.5",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"bs58": "^5.0.0",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"env-var": "^7.1.1",
"ethers": "^5.7.0",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-list-endpoints": "^6.0.0",
"express-list-routes": "^1.1.3",
"express-session": "^1.17.3",
"http-status-codes": "^2.2.0",
"jose": "^4.9.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"openid-client": "^5.1.9",
"passport": "^0.6.0",
"passport-twitter": "^1.0.4",
"ts-node-dev": "^2.0.0",
"tslog": "^3.3.4",
"tweetnacl": "^1.0.3"
}
}