-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 884 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 884 Bytes
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": "cak-core",
"version": "0.1.0",
"main": "out/main",
"repository": "https://github.com/CookingAtKIT/cak-core",
"license": "MIT",
"private": true,
"dependencies": {
"@types/cors": "^2.8.8",
"@types/crypto-js": "^4.0.1",
"@types/express": "^4.17.8",
"@types/minio": "^7.0.6",
"@types/mongoose": "^5.7.36",
"@types/morgan": "^1.9.1",
"@types/node": "^14.11.8",
"@types/nodemailer": "^6.4.0",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"minio": "^7.0.16",
"mongoose": "^5.10.9",
"nodemailer": "^6.4.14",
"morgan": "^1.10.0",
"typescript": "^4.0.3",
"yaml": "^1.10.0"
},
"scripts": {
"dev": "ts-node ./src/main",
"build": "tsc",
"start": "node out/main"
},
"devDependencies": {
"prettier": "^2.1.2",
"ts-node": "^9.0.0"
}
}