-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.19 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
{
"name": "techstack",
"description": "A collection of self built packages plus some forks for web development",
"version": "1.0.12",
"main": "index.js",
"author": "The-Code-Monkey",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "git clean -xdf",
"test": "lerna run test --stream",
"test:fix": "lerna run test -- -u",
"lint": "lerna run lint --stream",
"lint:fix": "lerna run lint -- --fix",
"lint:cms": "cd platforms/react-cms && yarn lint",
"size": "lerna run size",
"build:tcm": "cd packages/tcm-cli && yarn build",
"build:theme": "cd packages/theme && yarn build",
"build": "lerna run build --stream",
"lerna:link": "lerna link",
"lerna:changed": "lerna changed",
"lerna:version": "lerna version --conventional-commits --exact --yes",
"lerna:publish": "yarn lerna:changed && yarn lerna:version && lerna publish from-package --no-verify-access --yes --create-release github",
"build-storybook": "lerna run build-storybook --stream -- -o build",
"prepare": "husky install"
},
"devDependencies": {
"husky": "9.0.11",
"lerna": "8.1.3"
},
"packageManager": "yarn@4.2.2"
}