-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "api-basic-structure",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"build": "tsc -p ./tsconfig.json",
"start": "node --max-old-space-size=20000 build/start.ts",
"clean": "rm -rf build",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint:fix": "tslint -c tslint.json -p tsconfig.json --fix",
"format": "prettier --check src/",
"format:fix": "prettier --check src/ --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasfrotam/api-basic-structure.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lucasfrotam/api-basic-structure/issues"
},
"homepage": "https://github.com/lucasfrotam/api-basic-structure#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.5.9",
"ts-node": "^8.10.2"
},
"devDependencies": {
"@types/express": "^4.17.4",
"@types/mongodb": "^3.5.4",
"@types/node": "^13.11.0",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"tslint": "^6.1.2",
"typescript": "^3.8.3"
}
}