-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.43 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
{
"name": "nextcrazy-cli",
"version": "0.2.4",
"description": "A NextJS cli meant to be used with nextcrazy boilerplate",
"main": "./lib/index.js",
"bin": {
"nextcrazy-cli": "bin/nextcrazy"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "npm run build && npm run global",
"build": "tsc -p .",
"global": "npm i -g && nextcrazy-cli",
"publish-package": "npm run build && npm publish"
},
"files": [
"bin/",
"lib/",
"templates/"
],
"author": {
"email": "[email protected]",
"name": "Mohammad AlOulabi",
"url": "https://www.npmjs.com/~mohammadou1"
},
"license": "MIT",
"dependencies": {
"arg": "^4.1.3",
"camelcase": "^6.0.0",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"figlet": "^1.5.0",
"got": "^11.7.0",
"handlebars": "^4.7.6",
"prompts": "^2.3.2",
"tar": "^6.0.5",
"tslib": "^2.0.1",
"write": "^2.0.0"
},
"repository": {
"url": "https://github.com/mohammadou1/nextcrazy-cli"
},
"keywords": [
"nextcrazy",
"nextcrazy-cli",
"cli",
"nextjs"
],
"devDependencies": {
"@types/camelcase": "^5.2.0",
"@types/chalk": "^2.2.0",
"@types/clear": "^0.1.0",
"@types/figlet": "^1.2.0",
"@types/got": "^9.6.11",
"@types/node": "^14.11.1",
"@types/prompts": "^2.0.9",
"@types/tar": "^4.0.3",
"@types/write": "^2.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}