-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.84 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
{
"name": "@nammatham/monorepo",
"version": "2.0.0-alpha.13",
"description": "Azure Function Nodejs Lightweight framework with Dependency Injection",
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage",
"dev": "nx run @nammatham/core:build && nx run-many -t dev --projects nammatham @nammatham/* --parallel=10",
"pre-local": "tsx ./scripts/pre-local.ts",
"post-local": "tsx ./scripts/post-local.ts",
"release": "run-s build releaseOnly",
"releaseOnly": "tsx ./scripts/release.ts",
"format": "nx run-many -t format --projects=@nammatham/* --parallel=10",
"lint": "nx run-many -t lint --projects=@nammatham/* --parallel=10",
"lint:fix": "nx run-many -t lint:fix --projects=@nammatham/* --parallel=10",
"build": "nx run-many -t build --parallel=10",
"azurite": "pnpx azurite --silent --location ./.azurite --debug ./.azurite/debug.log"
},
"keywords": [
"azure-functions",
"azure",
"framework",
"dependency-injection",
"inversion-of-control"
],
"author": "Thada Wangthammang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thaitype/nammatham.git"
},
"devDependencies": {
"@inquirer/prompts": "^3.3.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitest/coverage-v8": "^1.1.3",
"eslint": "^8.36.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-unused-imports": "^3.0.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"nx": "^15.6.1",
"prettier": "^2.8.3",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}