-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.76 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
{
"name": "event-notion-pipeline",
"version": "0.0.1",
"description": "Synchronizer between Google Sheets and Notion for ACM UCSD Events Team.",
"main": "src/index.ts",
"repository": "git@github.com:acmucsd/event-notion-pipeline.git",
"author": "Matei-Alexandru Gardus <matei@gard.us>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node build/src/index.js",
"lint": "eslint ./ --ext .ts",
"dev": "tsc && node build/src/index.js",
"hot": "nodemon -e ts --exec \"yarn dev\"",
"lint:fix": "eslint ./ --ext .ts --fix"
},
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"@notionhq/client": "^2.2.3",
"axios": "^1.4.0",
"discord-api-types": "^0.30.0",
"discord.js": "13.1.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"google-spreadsheet": "^3.2.0",
"googleapis": "^100.0.0",
"got": "^11.8.2",
"json-diff-ts": "^1.2.1",
"lodash": "^4.17.21",
"luxon": "^2.0.2",
"node-schedule": "^2.1.0",
"papaparse": "^5.3.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.4.0",
"typedi": "^0.10.0",
"typescript": "^4.9.4",
"uuid": "^9.0.0",
"validator": "^13.9.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/google-spreadsheet": "^3.1.5",
"@types/lodash": "^4.14.177",
"@types/luxon": "^2.0.5",
"@types/node": "^16.11.6",
"@types/node-schedule": "^1.3.2",
"@types/papaparse": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-plugin-import": "^2.25.2",
"nodemon": "^2.0.14"
}
}