This repository has been archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.57 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
{
"name": "@biowaffeln/next-gen",
"version": "0.0.4",
"description": "The Next.js Codebase Generator",
"repository": {
"type": "git",
"url": "https://github.com/biowaffeln/next-gen.git"
},
"bugs": "https://github.com/biowaffeln/next-gen/issues",
"main": "src/main.js",
"files": [
"dist"
],
"bin": {
"next-gen": "dist/bin/next-gen.js",
"@biowaffeln/next-gen": "dist/bin/next-gen.js"
},
"scripts": {
"prebuild": "shx rm -rf dist",
"build": "tsc",
"postbuild": "shx cp -rf template dist",
"dev": "tsc -w",
"prepublishOnly": "npm run build",
"test": "tap",
"check-deps": "node -r ts-node/register scripts/check-deps.ts"
},
"keywords": [
"Next.js",
"jscodeshift",
"codegen",
"scaffolding"
],
"author": "Mark Kvetny @biowaffeln",
"license": "ISC",
"dependencies": {
"ansi-colors": "^4.1.1",
"deepmerge": "^4.2.2",
"fs-extra": "^9.1.0",
"jscodeshift": "^0.11.0",
"jscodeshift-add-imports": "^1.0.10",
"prompts": "^2.4.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.6",
"@types/jscodeshift": "^0.7.2",
"@types/node": "^14.14.25",
"@types/prompts": "^2.0.9",
"@types/tap": "^14.10.2",
"@types/test-console": "^1.1.0",
"@types/yargs": "^16.0.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"semver": "^7.3.4",
"shx": "^0.3.3",
"tap": "^14.11.0",
"test-console": "^1.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "prettier --write"
}
}