-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.91 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
66
67
{
"name": "@micro-lc/backoffice-local-cli",
"description": "backend mocked resource management cli and util form `backoffice-local` development template",
"version": "0.3.5",
"license": "SEE LICENSE IN LICENSE",
"packageManager": "yarn@3.2.1",
"bin": {
"create-lib": "./dist/create-lib/index.js",
"mgmt": "./dist/mgmt/index.mjs"
},
"files": [
"./dist",
"./package.json"
],
"scripts": {
"clean": "rimraf dist",
"create-lib": "node ./dist/create-lib",
"lint": "eslint . --ext .js,.ts",
"build:cli": "node ./scripts/build.mjs",
"check:types": "tsc",
"build": "run-p check:types build:cli",
"mgmt": "node ./dist/mgmt/index.mjs",
"test": "NODE_NO_WARNINGS=1 mocha",
"coverage": "NODE_NO_WARNINGS=1 nyc mocha"
},
"devDependencies": {
"@esbuild-plugins/node-resolve": "^0.1.4",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/chalk": "^2.2.0",
"@types/eslint": "^8.4.5",
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.1",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.3",
"@types/prettier": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"esbuild": "^0.14.48",
"eslint": "^8.19.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"pinst": "^3.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"dependencies": {
"ajv": "^8.11.0",
"chalk": "^5.0.1",
"commander": "^9.3.0",
"figlet": "^1.5.2",
"fs-extra": "^10.1.0",
"handlebars": "^4.7.7",
"inquirer": "^9.0.0",
"mkdirp": "^1.0.4",
"prettier": "^2.7.1",
"strip-json-comments": "^4.0.0"
}
}