-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "@fibonalabs/create-fibonalabs-ui",
"version": "0.0.5",
"keywords": [
"react",
"next",
"next.js",
"antd",
"material"
],
"description": "Create Fibonalabs React Frontend with one command",
"author": "Fibonalabs Team",
"license": "ISC",
"bin": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"precompile": "rimraf dist",
"dev:watch": "tsc && concurrently \"tsc -w\" \"nodemon dist/index.js\"",
"compile": "tsc",
"dev": "node dist/index.js",
"prepublish": "rimraf dist && tsc",
"publish": "npm publish",
"prepare": "husky install",
"commit": "clear && git-cz",
"commit:win": "cls && git-cz"
},
"dependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/node": "^12.6.8",
"@types/prompts": "^2.0.14",
"@types/validate-npm-package-name": "^3.0.3",
"chalk": "^4.1.1",
"commander": "^8.0.0",
"concurrently": "^6.2.0",
"cross-spawn": "^7.0.3",
"nodemon": "^2.0.20",
"prompts": "^2.4.1",
"typescript": "4.3.4",
"validate-npm-package-name": "^3.0.0",
"yargs": "^17.3.1"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"git-cz": "^4.7.6",
"husky": "^7.0.0",
"rimraf": "^3.0.2"
}
}