-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.68 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.68 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "perfect-boilerplate",
"version": "3.0.1",
"description": "The ultimate boilerplate cli for modern applications",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BotSeaio/Perfect-Boilerplate"
},
"author": "Tim Crooker <timothycrooker@gmail.com>",
"homepage": "https://botseaio.github.io/Perfect-Boilerplate/",
"bin": {
"generate": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev:build": "nodemon --watch src -e ts --ignore dist --exec npm run build",
"dev:start": "rimraf ./test && node ./dist test -s ../perfect-boilerplate-plugins",
"test": "npm run lint && jest",
"lint": "eslint --fix",
"build": "npm run clean && tsc && babel src --out-dir dist --extensions \".ts,.js,.json\" --source-maps inline",
"clean": "rimraf ./dist",
"release": "dotenv release-it --only-version"
},
"dependencies": {
"@types/md5": "^2.3.1",
"@types/temp": "^0.9.1",
"@types/valid-url": "^1.0.3",
"chalk": "^4.1.2",
"clear": "^0.1.0",
"commander": "6.2.0",
"deepmerge": "^4.2.2",
"figlet": "^1.5.2",
"grit-cli": "^0.2.17",
"md5": "^2.3.0",
"ora": "^5.4.1",
"path": "^0.12.7",
"promisify": "^0.0.3",
"prompts": "^2.4.1",
"rimraf": "^3.0.2",
"temp": "^0.9.4",
"valid-url": "^1.0.9",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@types/figlet": "^1.5.4",
"@types/jest": "^27.0.1",
"@types/node": "^16.6.1",
"@types/prompts": "^2.0.14",
"@types/validate-npm-package-name": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-jest": "^27.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.1.0",
"nodemon": "^2.0.12",
"np": "^7.5.0",
"prettier": "^2.3.2",
"release-it": "^14.11.5",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.20.1",
"ts-node": "^10.2.0",
"ts-node-dev": "^1.1.8",
"type-fest": "^2.2.0",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"standard --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"release-it": {
"git": {
"commit": true,
"commitMessage": "chore: release v${version}",
"tag": true,
"push": true
},
"npm": {
"publish": false
},
"github": {
"release": true
}
}
}