This repository has been archived by the owner on Apr 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.8 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
72
73
74
{
"name": "@solid-soda/scripts",
"version": "2.5.0",
"author": "Igor Kamyshev <[email protected]>",
"license": "MIT",
"main": "config.json",
"files": [
"config.json",
"*/index.js",
"*/config/*",
"*/utils/*",
"bin/*",
"utils/*"
],
"bin": "./bin/solid-scripts.js",
"repository": "[email protected]:solid-soda/scripts.git",
"scripts": {
"prepare": "echo 'Already prepared'",
"lint:code": "yarn eslint \"./**/*.{js,jsx}\"",
"pretty": "yarn prettier --write .",
"commit": "yarn git-cz",
"release": "yarn standard-version"
},
"preferUnplugged": true,
"dependencies": {
"chalk": "^4.0.0",
"cross-spawn": "^7.0.2",
"inquirer": "^7.1.0",
"lodash": "^4.17.15",
"mrm-core": "^4.7.0"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@yarnpkg/pnpify": "^2.0.0-rc.20",
"babel-eslint": "latest",
"commitizen": "latest",
"cz-conventional-changelog": "latest",
"eslint": "latest",
"eslint-config-airbnb-base": "latest",
"eslint-config-prettier": "latest",
"eslint-import-resolver-node": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-import-helpers": "latest",
"lint-staged": "latest",
"prettier": "latest",
"simple-git-hooks": "latest",
"standard-version": "latest"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{tsx,ts,js,jsx,scss,css,js,json,md}": [
"yarn prettier --write"
]
},
"husky": {},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged",
"commit-msg": "yarn commitlint -e"
}
}