-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 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
{
"name": "superteam-reputation-backend",
"version": "1.0.0",
"description": "Express Backend for Superteam Reputation Dashboard",
"main": "dist/index.js",
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"scripts": {
"build": "tsup src/* --outDir dist",
"dev": "cross-env NODE_ENV=development nodemon",
"prod": "cross-env NODE_ENV=production nodemon",
"lint": "eslint src/**/*.ts",
"start": "prisma generate && node dist/index.js",
"format": "eslint src/**/*.ts --fix",
"prepare": "husky install"
},
"keywords": [
"superteamDAO"
],
"author": "@irffanasiff",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.8.0",
"@types/body-parser": "^1.19.2",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"airtable": "^0.11.6",
"body-parser": "^1.20.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"eslint": "^8.29.0",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"helmet": "^6.0.1",
"morgan": "^1.10.0",
"morgan-body": "^2.6.8",
"mysql2": "^2.3.3",
"node-schedule": "^2.1.0",
"openapi-types": "^12.1.0",
"prettier": "^2.8.1",
"prisma": "^4.8.0",
"swagger-jsdoc": "^6.2.7",
"swagger-ui-express": "^4.6.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"tsup": "^6.5.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.11",
"@types/node-schedule": "^2.1.0",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"husky": "^8.0.2",
"nodemon": "^2.0.20",
"typescript": "^4.9.3"
}
}