-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 894 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
35
36
37
38
39
40
{
"name": "ratemycourse-backend",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"dependencies": {
"@types/node": "^14.14.41",
"body-parser": "^1.18.1",
"cors": "^2.8.5",
"express": "^4.15.4",
"mongodb": "^3.0.8",
"morgan": "^1.10.0",
"nodemon": "^2.0.7",
"reflect-metadata": "^0.1.10",
"ts-node": "^9.1.1",
"typeorm": "^0.2.28",
"typescript": "^4.2.4",
"yup": "^0.32.9"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"dev": "nodemon"
},
"engines": {
"node": "14.x"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src/**/*"
],
"exec": "ts-node src/index.ts",
"ext": "ts, js"
}
}