-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "odatafy-mongodb-example",
"version": "0.0.1",
"description": "example repo to showcase odatafy mongodb with mongoose and express",
"main": "dist/index.js",
"scripts": {
"devstart": "tsc-watch --onSuccess \"node ./dist/app.js\"",
"build": "tsc",
"start": "node ./dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gang-of-Fork/odatafy-mongodb-example.git"
},
"author": "Gang of Fork",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Gang-of-Fork/odatafy-mongodb-example/issues"
},
"homepage": "https://github.com/Gang-of-Fork/odatafy-mongodb-example#readme",
"dependencies": {
"@faker-js/faker": "^7.3.0",
"@types/morgan": "^1.9.3",
"@types/node": "^18.6.3",
"body-parser": "^1.20.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mongoose": "^6.5.0",
"morgan": "^1.10.0",
"odatafy-mongodb": "^0.0.7",
"odatafy-mongoose": "^0.0.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4"
}
}