-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "mfa",
"version": "1.0.0",
"description": "MFA system for shared accounts",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && ts-node .",
"build": "rimraf ./dist && npx prisma generate && tsc",
"dev": "ts-node-dev --respawn --pretty --transpile-only src/index.ts",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "https://github.com/hackclub/mfa",
"author": "Gary Tou <[email protected]> (https://garytou.com)",
"license": "MIT",
"prettier": "@garyhtou/prettier-config",
"devDependencies": {
"@garyhtou/prettier-config": "^1.0.1",
"@types/express": "^4.17.13",
"@types/node": "^20.14.2",
"prisma": "^5.15.0",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3"
},
"dependencies": {
"@prisma/client": "5.15.0",
"@slack/bolt": "^3.8.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"twilio": "^3.67.2",
"typescript": "^4.4.2"
}
}