generated from avilabiel/clean-architecture-nest-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 982 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
32
33
34
{
"name": "termo-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/avilabiel/termo-api.git",
"author": "Gabriel Ávila <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf -rf dist && ttsc -P tsconfig.json",
"start": "node dist/index.js",
"start-dev": "nodemon --watch \"./src\" --ext \"ts, js\" --exec \"yarn build && cpy .env dist/ && yarn start\"",
"test": "jest"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"ts-jest": "^28.0.7",
"ttypescript": "^1.5.15",
"typescript": "^4.7.4",
"typescript-transform-paths": "^3.3.1"
},
"dependencies": {
"@nestjs/common": "^9.0.11",
"@nestjs/core": "^9.0.11",
"@nestjs/platform-express": "^9.0.11",
"cpy-cli": "^4.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.6",
"uuidv4": "^6.2.13"
}
}