-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "typescript-rest-mongoose",
"version": "1.0.0",
"description": "Reference Project TypeScript REST",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"build": "run-s clean prettier lint compile",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint-fix": "tslint -c tslint.json --fix 'src/**/*.ts'",
"compile": "tsc",
"clean": "rimraf './es/*' './typings/*'",
"docs": "swagger-cli bundle -r -o spec/api-spec-full.json spec/api-spec.json",
"prettier": "prettier --config .prettierrc 'src/**/*' --write",
"docker-network": "docker network create data-center",
"start": "node --es-module-specifier-resolution=node ./es/index.js",
"start-docker": "docker-compose up --build -d",
"stop-docker": "docker-compose down"
},
"repository": {
"type": "git",
"url": "https://gihub.com/jmcanterafonseca/tyepescript-rest-mongoose"
},
"keywords": [
"rest",
"typescript",
"JSON-Schema"
],
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "29.1.2",
"@types/node": "18.8.3",
"jest": "29.1.2",
"ts-jest": "29.0.3",
"typescript": "4.8.4",
"swagger-cli": "^4.0.4",
"tslint": "^6.1.3",
"prettier": "^2.7.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=16.18.0"
},
"author": "Jose M. Cantera",
"license": "ISC",
"dependencies": {
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"express": "^4.18.2",
"mongoose": "^6.7.0",
"dotenv": "^16.0.3",
"uuid": "^9.0.0"
}
}