-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "ubc-course-api",
"version": "1.0.0",
"description": "realtime ubc course scraper ",
"main": "index.ts",
"scripts": {
"postinstall": "npm run build",
"dev": "nodemon index.ts",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"build": "tsc",
"start": "npm run build && node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StuffByLiang/realtime-ubc-courses-api.git"
},
"keywords": [
"ubc",
"course",
"scraper"
],
"author": "Liang Liu",
"license": "ISC",
"bugs": {
"url": "https://github.com/StuffByLiang/realtime-ubc-courses-api/issues"
},
"homepage": "https://github.com/StuffByLiang/realtime-ubc-courses-api#readme",
"dependencies": {
"@types/cheerio": "^0.22.30",
"axios": "^0.24.0",
"cheerio": "^1.0.0-rc.10",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"mongodb": "^4.2.2",
"mongoose": "^6.1.3",
"mongoose-morgan": "^1.0.17",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/mongodb": "^4.0.6",
"@types/mongoose": "^5.11.96",
"@types/node": "^17.0.4",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"jest": "^27.4.5",
"mongodb-memory-server": "^8.1.0",
"supertest": "^6.1.6",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0"
}
}