-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "crna-cm-api",
"version": "1.0.0",
"description": "Content Management API",
"main": "index.js",
"scripts": {
"build": "tsc -p ./",
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"start": "node dist/index.js",
"start3": "ts-node src/index.ts",
"dev2": "nodemon --exec ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"create:migration": "mikro-orm migration:create"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buka4rill/crna-cm-api.git"
},
"keywords": [],
"author": "Ebuka Abraham",
"license": "ISC",
"bugs": {
"url": "https://github.com/buka4rill/crna-cm-api/issues"
},
"homepage": "https://github.com/buka4rill/crna-cm-api#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^15.0.2",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@mikro-orm/cli": "^4.5.4",
"@mikro-orm/core": "^4.5.4",
"@mikro-orm/migrations": "^4.5.4",
"@mikro-orm/postgresql": "^4.5.4",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^9.0.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.11.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.6.0"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
}
}