-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
{
"name": "template-node",
"version": "0.3.3",
"description": "An empty application created by [Diginext](https://diginext.site/?ref=cli).",
"bin": {
"template-node": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"main": "./dist/index.js",
"scripts": {
"test": "mocha test/*.test.js",
"build": "npm run clean && tsc -p tsconfig.json && tsc-alias -p tsconfig.json && npm run minjs",
"dev": "npm run clean && nodemon",
"start": "node dist/index.js",
"release": "npm run build && npm publish",
"format": "prettier src/**/*.{js,ts,tsx,json,yaml,css} --write ",
"check-types": "tsc --noEmit --pretty && tsc --noEmit --pretty",
"clean": "rimraf dist || exit 0",
"minjs": "uglifyjs-folder dist -e -x .js -o dist",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"chalk": "4.1.2",
"commander": "^12.0.0",
"diginext-utils": "^3.11.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"mocha": "^10.3.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"prompts": "^2.4.2",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3",
"uglifyjs-folder": "^3.3.0"
},
"nodemonConfig": {
"watch": [
"src"
],
"exec": "pnpm tsc -p tsconfig.json && pnpm tsc-alias -p tsconfig.json",
"ext": "js,json,ts,tsx",
"ignore": [
"node_modules",
"dist",
"build",
"esm",
"*.log"
],
"env": {
"NODE_ENV": "local"
}
}
}