-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "YU-Developer-API",
"version": "1.0.0",
"description": "An API to access information about course offerings, professor information, and prerequisite information from york university courses website",
"main": "index.js",
"scripts": {
"start": "node build/server",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npm run build && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/A-Chidalu/YU-Developer-API.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/A-Chidalu/YU-Developer-API/issues"
},
"homepage": "https://github.com/A-Chidalu/YU-Developer-API#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.24",
"@types/express": "^4.17.11",
"@types/node": "^14.14.31",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"@types/pg": "^7.14.11",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"typescript": "^4.2.2"
}
}