-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.8 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
58
59
60
61
62
63
64
{
"name": "my-app-name",
"version": "1.0.0",
"description": "This is a project template for NodeJS webservice RESTful API with typescript.",
"main": "index.js",
"scripts": {
"start:prod": "node index.js",
"dev": "nodemon src/index.ts",
"clean": "npx rimraf dist",
"prebuild": "npm run clean",
"build": "tsc -p .",
"postbuild": "npx ts-node ./src/utils/build && npx rimraf ./dist/utils/build.js",
"docker:build": "npm run clean && docker-compose build",
"docker:up": "npm run clean && docker-compose up -d",
"docker:logs": "docker-compose logs -f",
"docker:shell": "docker-compose exec my-app-name sh"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src/"
],
"exec": "node -r tsconfig-paths/register -r ts-node/register src/index.ts",
"ext": "js json ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JulioFlores/ts-node-express-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JulioFlores/ts-node-express-template/issues"
},
"homepage": "https://github.com/JulioFlores/ts-node-express-template#readme",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.11.8",
"@types/shelljs": "^0.8.8",
"nodemon": "^2.0.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"module-alias": "^2.2.2"
}
}