-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 974 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
{
"name": "basic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "run-s build start",
"debug": "tsc && npm run start",
"build": "cross-env nammatham_env=build tsx src/startup.ts && tsc",
"serve:watch": "nodemon --watch src --ext ts --exec 'npm run serve'",
"build:watch": "nodemon --watch src --ext ts --delay 0.5 --exec 'npm run build'",
"start:watch": "nodemon --watch dist --delay 0.3 --exec 'npm start'",
"start": "func start",
"dev": "run-s serve:watch"
},
"author": "Thada Wangthammang",
"license": "MIT",
"dependencies": {
"inversify": "^6.0.1",
"nammatham": "^1.3.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@azure/functions": "^3.5.0",
"@type-challenges/utils": "^0.1.1",
"@types/node": "^18.13.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
}
}