forked from dersonsena/clean-arch-clash-royale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 863 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
{
"name": "clean-ts-talk",
"description": "Clean Arch Talk Join",
"version": "0.0.1",
"scripts": {
"start": "npm run build && NODE_PATH=./dist node dist/main/index.js",
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules src/main/index.ts",
"clean": "rm -rf dist",
"build": "npm run clean && tsc"
},
"dependencies": {
"@hapi/hapi": "^20.1.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"module-alias": "^2.2.2",
"mongoose": "^5.13.5"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/hapi": "^18.0.6",
"@types/hapi__hapi": "^20.0.9",
"@types/module-alias": "^2.0.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^16.4.7",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"engines": {
"node": "14.x"
}
}