-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "back-end",
"version": "1.0.0",
"description": "UVic scheduler server",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev src/index.ts",
"build": "tsc --outDir build",
"start": "node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint src/**/*.ts"
},
"author": "VikeLabs",
"dependencies": {
"@types/express": "^4.17.1",
"@types/mongodb": "^3.3.8",
"@types/mongoose": "^5.5.29",
"@types/node": "^12.11.7",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.3.3",
"mongoose": "^5.7.8",
"typescript": "^3.6.4"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.18.2",
"ts-node-dev": "^1.0.0-pre.44"
}
}