-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 859 Bytes
/
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
{
"name": "generate-next-app",
"author": "Giancarlos <[email protected]>",
"homepage": "https://github.com/GiancarlosIO/generate-next-apps#readme",
"version": "0.6.3",
"main": "index.js",
"license": "MIT",
"bin": {
"generate-next-app": "dist/generate-next-app.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && copyfiles -u 1 src/templates/**/* dist/",
"test": "npm run build && node ./dist/generate-next-app.js --debug",
"prepare": "npm run build"
},
"dependencies": {
"@types/fs-extra": "9.0.12",
"@types/inquirer": "^7.3.3",
"@types/minimist": "1.2.2",
"@types/node": "16.6.2",
"chalk": "4.1.2",
"copyfiles": "2.4.1",
"fs-extra": "10.0.0",
"inquirer": "^8.1.2",
"minimist": "1.2.5",
"ora": "5.4.1",
"tslib": "2.3.1",
"typescript": "^4.3.5"
}
}