-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1012 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1012 Bytes
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
{
"name": "cookie-baker",
"private": true,
"version": "0.0.2",
"repository": "https://github.com/BataevDaniil/cookie-baker.git",
"author": "Daniil Bataev Iurevich <daniil.bataev.iurevich@gmail.com>",
"license": "MIT",
"workspaces": [
"./packages/*"
],
"scripts": {
"prepare": "husky install",
"build": "npm run clear-build && npm run -w @cookie-baker/core -w @cookie-baker/browser -w @cookie-baker/node -w @cookie-baker/react build",
"clear-build": "ls packages | xargs -I{} rm -rf 'packages/{}/build'"
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.0",
"prettier": "^2.3.2",
"standard-version": "^9.3.1"
},
"engines": {
"npm": ">=7.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,css,md,json}": "prettier --write"
},
"prettier": {
"semi": false,
"trailingComma": "all"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}