-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1008 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
35
{
"name": "@nammatham/express",
"version": "2.0.0-alpha.13",
"description": "Type-safe Serverless Library for Azure Functions and friends",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"build": "tsup src/main.ts --dts",
"format": "prettier -w src",
"lint": "tsc --noEmit && eslint ./src && prettier -c src",
"lint:fix": "eslint --fix ./src && prettier -c src",
"dev": "nodemon --watch src --ext ts --exec 'npm run build'"
},
"keywords": [
"azure-functions",
"azure"
],
"author": "Thada Wangthammang",
"license": "MIT",
"dependencies": {
"@nammatham/core": "2.0.0-alpha.13",
"@types/express": "^4.17.21",
"colorette": "^2.0.20",
"express": "^4.18.2"
},
"repository": {
"type": "git",
"url": "https://github.com/thaitype/nammatham.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}