-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
151 lines (151 loc) · 5.25 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "fast-maker",
"version": "2.2.0",
"description": "create route file on specific directory",
"scripts": {
"test": "LOG_LEVEL=info node --trace-warnings --no-compilation-cache node_modules/.bin/jest --coverage",
"test:silent": "LOG_LEVEL=info node --trace-warnings --no-compilation-cache node_modules/.bin/jest --coverage --silent",
"test:debug": "node -r ts-node/register --inspect --nolazy node_modules/jest/bin/jest",
"test:report": "http-server -p 9991 ./coverage/lcov-report",
"dev": "ts-node ./src/cli.ts",
"clean": "just --config ./.configs/just.config.ts clean",
"pub:prod": "just --config ./.configs/just.config.ts pub:prod",
"pub": "just --config ./.configs/just.config.ts pub",
"repub": "just --config ./.configs/just.config.ts repub",
"ctix:single": "just --config ./.configs/just.config.ts ctix:single",
"ctix:remove": "just --config ./.configs/just.config.ts ctix:remove",
"rollup:prod": "just --config ./.configs/just.config.ts rollup:prod",
"rollup:dev": "just --config ./.configs/just.config.ts rollup:dev",
"build": "just --config ./.configs/just.config.ts build",
"lint": "just --config ./.configs/just.config.ts lint",
"lint-staged": "lint-staged",
"prettier": "just --config ./.configs/just.config.ts prettier",
"uid": "node scripts/uuid.js",
"dd": "deps-diff md -d dev -d prod -d peer --title-list-type '*' --deps-list-type '*' --content-list-type '*'",
"debug": "node -r ts-node/register --inspect --nolazy src/cli.ts",
"debug-brk": "node -r ts-node/register --inspect-brk --nolazy src/cli.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imjuni/fast-maker.git"
},
"bin": {
"fast-maker": "dist/cli.js"
},
"private": false,
"author": "ByungJoon Lee",
"license": "MIT",
"main": "dist/cjs/fast-maker.js",
"module": "dist/esm/fast-maker.js",
"typings": "dist/esm/fast-maker.d.ts",
"exports": {
".": {
"require": "./dist/cjs/fast-maker.js",
"import": "./dist/esm/fast-maker.js",
"typings": "./dist/esm/fast-maker.d.ts"
}
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/imjuni/fast-maker/issues"
},
"homepage": "https://github.com/imjuni/fast-maker#readme",
"devDependencies": {
"@maeum/test-utility": "^0.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@swc/core": "^1.3.37",
"@swc/helpers": "^0.4.14",
"@swc/jest": "^0.2.24",
"@tsconfig/node14": "^1.0.3",
"@types/cli-progress": "^3.11.0",
"@types/figlet": "^1.5.5",
"@types/inquirer": "^9.0.1",
"@types/jest": "^29.2.5",
"@types/minimist": "^1.2.2",
"@types/node": "^14.18.36",
"@types/url-join": "^4.0.0",
"@types/uuid": "^8.3.0",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"cross-env": "^7.0.3",
"ctix": "^1.8.2",
"deps-diff": "^1.0.2",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^5.1.1",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"inquirer-autocomplete-prompt": "^2.0.0",
"jest": "^29.4.3",
"jest_workaround": "^0.1.14",
"just-task": "^1.7.0",
"lint-staged": "^13.1.2",
"prettier-eslint": "^15.0.1",
"prettier-plugin-organize-imports": "^3.2.2",
"read-pkg": "^5.2.0",
"rimraf": "^4.3.0",
"rollup": "^3.18.0",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-swc3": "^0.8.0",
"ts-jest": "^29.0.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"tslib": "^2.5.0"
},
"dependencies": {
"@maeum/cli-logo": "^0.2.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.3",
"dayjs": "^1.11.7",
"deepmerge": "^4.3.0",
"fast-copy": "^2.1.4",
"fast-glob": "^3.2.12",
"fast-safe-stringify": "^2.1.1",
"fastify": "^4.14.0",
"find-up": "^5.0.0",
"fuse.js": "^6.6.2",
"inquirer": "^8.0.0",
"json-schema": "^0.4.0",
"jsonc-parser": "^3.2.0",
"mathjs": "^11.6.0",
"minimist": "^1.2.8",
"my-easy-fp": "^0.20.2",
"my-node-fp": "^0.8.1",
"my-only-either": "^1.3.0",
"ora": "^5.4.1",
"pino": "^8.11.0",
"pino-pretty": "^9.4.0",
"prettier": "^2.8.4",
"rxjs": "^7.8.0",
"ts-morph": "^17.0.1",
"type-fest": "^3.6.1",
"typescript": "^4.9.5",
"url-join": "^4.0.1",
"uuid": "^9.0.0",
"xstate": "^4.37.0",
"yargs": "^17.7.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"cross-env NODE_ENV=production eslint --cache"
],
"*.{js,jsx,ts,tsx},*.json,.{eslintrc.cjs,prettierrc}": [
"cross-env NODE_ENV=production prettier --ignore-path .eslintignore --parser json --write"
]
}
}