forked from mongoosejs/sample-apps
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
38 lines (38 loc) · 995 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
{
"name": "@mongoosejs/typescript-express-reviews",
"description": "Mongoose vehicle review sample app with TypeScript and Express",
"authors": "Valeri Karpov <[email protected]>",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "tsc",
"clean-db": "ts-node src/seed/dropCollections",
"seed": "ts-node src/seed/seed",
"start": "ts-node src/api",
"test": "ts-mocha tests/*.test.ts"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@awaitjs/express": "0.9.0",
"bcryptjs": "^2.4.3",
"dotenv": "16.4.7",
"express": "4.x",
"mongoose": "^8.1",
"stargate-mongoose": "0.6.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/express": "4.17.21",
"@types/mocha": "10.0.10",
"@types/node": "22.10.7",
"axios": "1.7.9",
"mocha": "10.8.2",
"sinon": "^19.0.2",
"ts-mocha": "^10.0.0",
"ts-node": "10.9.2",
"typescript": "5.7.3"
}
}