-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 3.02 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/snek-at/snek-tools.git"
},
"bugs": {
"url": "https://github.com/snek-at/snek-tools/issues"
},
"homepage": "https://github.com/snek-at/snek-tools#readme",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@snek-at/storybook-addon-chakra-ui": "^1.0.0-beta.2",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/builder-webpack5": "^6.4.0-alpha.30",
"@storybook/manager-webpack5": "^6.4.0-alpha.30",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.7",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.1",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.12",
"prettier": "2.2.1",
"semantic-release": "^17.4.4",
"semantic-release-monorepo": "^7.0.5",
"typescript": "^4.3.5",
"typescript-tslint-plugin": "^1.0.1"
},
"scripts": {
"build:all": "tsc -b",
"build:all:ci": "tsc -b --verbose",
"build:all:cleanly": "yarn clean && yarn && yarn build:all",
"build": "cross-env NODE_ENV=production npm run build:packages && npm run build:packages:types",
"build:clean": "npm run build:packages:types -- --clean",
"build:packages": "lerna exec --parallel --scope '@snek-at/*' -- babel --root-mode upward src --out-dir dist --extensions .ts,.tsx --copy-files",
"build:packages:types": "lerna exec --scope '@snek-at/*' -- tsc --declaration --emitDeclarationOnly",
"build:packages:ci": "npm run build:packages -- --verbose",
"build:packages:watch": "npm run build:packages -- --watch",
"pack": "lerna run pack --stream",
"dist": "lerna run dist --stream",
"dist:all": "lerna run dist:all --scope '@snek-at/*' --stream",
"release": "HUSKY=0 yarn workspaces run semantic-release -e semantic-release-monorepo",
"clean": "lerna clean --yes && npm run build:clean && rimraf node_modules",
"prettify": "prettier --write '**/*.{ts,tsx,js,json}' '!**/{dist,lib.git,package.json,build}/**'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install",
"develop": "yarn workspace my-gatsby-site develop"
},
"lint-staged": {
"*.tsx,*.ts,*.js,!*js.snap": [
"prettier --write"
],
"*.json,!package.json": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": {
"nohoist": [
"gatsby"
],
"packages": [
"examples/*",
"packages/*"
]
}
}