-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "nodejs-api-structure",
"version": "1.0.0",
"description": "Project structure nodejs",
"main": "src/app.ts",
"dependencies": {
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-rescue": "^1.1.5",
"filter-files": "^0.4.0",
"is-directory": "^0.3.1",
"lodash": "^4.17.13",
"mongodb": "^3.2.2"
},
"devDependencies": {
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.1",
"@types/node": "^11.11.3",
"chai": "^4.2.0",
"mocha": "^6.0.2",
"nodemon": "^1.18.10",
"tslint": "^5.14.0",
"typescript": "^3.3.3333"
},
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node dist/src/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "node bin/npm-postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RafaelGSS/nodejs-api-structure.git"
},
"author": "Rafael Gonzaga",
"license": "MIT",
"bugs": {
"url": "https://github.com/RafaelGSS/nodejs-api-structure/issues"
},
"homepage": "https://github.com/RafaelGSS/nodejs-api-structure#readme"
}