-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 889 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
{
"name": "Mongoose-Typescript-Boilerplate",
"version": "1.0.0",
"description": "Minimalistic boilerplate to quick-start Node.js, MongoDB, Mongoose and Jest",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=dev ts-node src/index.ts",
"qa": "NODE_ENV=qa node dist/index.js",
"prod": "NODE_ENV=dev ts-node dist/index.js",
"build": "tsc",
"test": "jest --coverage",
"lint": "eslint src/**/*.ts --fix",
"play": "nodemon src/play.ts"
},
"author": "jiss jose",
"license": "Apache-2.0",
"dependencies": {
"jest": "^27.5.1",
"mongoose": "^6.3.1",
"ts-jest": "^28.0.5"
},
"devDependencies": {
"@types/node": "^16.11.26",
"@types/jest": "^27.4.1",
"eslint": "^8.11.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}