-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 983 Bytes
/
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
{
"name": "meem-packages",
"license": "MIT",
"scripts": {
"lerna": "lerna",
"bootstrap": "lerna bootstrap",
"publish": "lerna publish",
"clean": "lerna run clean --parallel --stream",
"clean:modules": "lerna run clean:modules --parallel && rm -rf node_modules",
"reset": "yarn run clean && yarn run clean:modules && yarn && yarn run bootstrap && yarn run build && yarn run bootstrap",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint:fix --parallel",
"localPackageLink": "yarn && cd packages/react/node_modules/react && yarn link && cd ../react-dom && yarn link",
"build": "lerna run build",
"test": "lerna run test --parallel --stream",
"watch": "lerna run watch --no-sort --stream",
"linkAll": "lerna run link"
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"concurrently": "^7.1.0",
"conventional-changelog-kengoldfarb": "^1.0.0",
"lerna": "^4.0.0",
"typescript": "^4.6.3"
}
}