This repository has been archived by the owner on Aug 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.15 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
{
"name": "@penumbra-experimental/midway-gen",
"version": "1.0.0",
"main": "src/index.js",
"repository": "https://github.com/linbudu599/experimental-midway-cli-generator.git",
"author": "Linbudu <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "yarn reset && cross-env GEN_LOCAL=true tsnd --transpile-only ./src/index.ts",
"dev:w": "yarn reset && cross-env GEN_LOCAL=true tsnd --respawn --transpile-only ./src/index.ts",
"ast": "tsnd --respawn --transpile-only ./src/lib/ast/sample.ts",
"reset": "tsnd --transpile-only ./scripts/reset.ts",
"test": "jest",
"test:watch": "jest --watch",
"build": "tsup-node"
},
"gitHooks": {
"pre-commit": "lint-staged && yarn reset"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"cac": "^6.7.3",
"chalk": "^4.1.2",
"commander": "^8.1.0",
"consola": "^2.15.3",
"ejs": "^3.1.6",
"execa": "^5.1.1",
"find-up": "^5.0.0",
"fs-extra": "^10.0.0",
"inquirer": "^8.1.2",
"js-yaml": "^4.1.0",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"log-symbols": "^5.0.0",
"minimatch": "^3.0.4",
"mwts": "^1.2.2",
"ora": "^5.4.1",
"prisma": "^2.28.0",
"read-pkg": "^6.0.0",
"strip-comments": "^2.0.1",
"strip-indent": "^4.0.0",
"ts-morph": "^11.0.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5",
"yargs": "^17.0.1",
"yargs-parser": "^20.2.9"
},
"devDependencies": {
"@types/ejs": "^3.0.7",
"@types/fs-extra": "^9.0.12",
"@types/inquirer": "^7.3.3",
"@types/jest": "^26.0.24",
"@types/js-yaml": "^4.0.2",
"@types/jsonfile": "^6.0.1",
"@types/lodash": "^4.14.171",
"@types/minimatch": "^3.0.5",
"@types/node": "^16.4.10",
"@types/parse-json": "^4.0.0",
"@types/prettier": "^2.3.2",
"@types/strip-comments": "^2.0.1",
"@types/yargs": "^17.0.2",
"clet": "^0.5.0",
"cpy": "^8.1.2",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.0.6",
"lint-staged": "^11.1.1",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"tsup": "^4.13.1",
"yorkie": "^2.0.0"
}
}