-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 849 Bytes
/
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
{
"name": "student-api",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"dev": "ts-node ./src/server.ts",
"start": "nodemon ./dist/server.js",
"prod": "npm run build && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smackodale/student-api.git"
},
"author": "Dale Cahill",
"license": "ISC",
"bugs": {
"url": "https://github.com/smackodale/student-api/issues"
},
"homepage": "https://github.com/smackodale/student-api#readme",
"devDependencies": {
"@types/mongodb": "^3.1.19",
"@types/mongoose": "^5.3.17",
"typescript": "^3.3.3"
},
"dependencies": {
"@types/express": "^4.16.1",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"mongoose": "^5.4.13",
"nodemon": "^1.18.10"
}
}