-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.04 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
{
"name": "giggle-gig",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "rm -rf dist && npx tsc && npx tsc-alias",
"dist:api": "node ./dist/api/index.js",
"start:api": "ts-node ./src/api/index.ts",
"dist:cron": "node ./dist/cron/index.js",
"start": "npm run start:api",
"start:cron": "ts-node ./src/cron/index.ts",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "ts-node src/common/properties.ts"
},
"dependencies": {
"@slack/bolt": "^3.21.1",
"axios": "^1.7.4",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"express-validator": "^7.2.0",
"lodash": "^4.17.21",
"mysql2": "^3.11.0",
"node-cache": "^5.1.2",
"node-cron": "^3.0.3",
"typeorm": "^0.3.20",
"typescript": "^5.5.4",
"winston": "^3.14.2"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.7",
"@types/node": "^22.2.0",
"@types/node-cron": "^3.0.11",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepam-kapur/GiggleGig.git"
},
"author": "Deepam Kapur",
"license": "ISC",
"bugs": {
"url": "https://github.com/deepam-kapur/GiggleGig/issues"
},
"homepage": "https://github.com/deepam-kapur/GiggleGig#readme"
}