forked from prismicio/slice-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.46 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.46 KB
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
{
"name": "root",
"private": true,
"engines": {
"node": ">=12"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"postinstall": "lerna bootstrap",
"test": "jest",
"lint-staged": "lint-staged",
"build": "npm run test && lerna run build --stream --parallel",
"publish:alpha": "lerna publish --yes --canary --no-push --no-git-tag-version --dist-tag alpha",
"::changeset": "npm run changeset add && git add .changeset && git commit -m '[release:changelog] update changeset'; echo 'We commited your changeset. You should defo push this master ✌️'",
"::release": "manypkg check && npm run build && lerna publish && npm run run changeset",
"prepare": "husky install"
},
"devDependencies": {
"husky": "^7.0.2",
"lerna": "^3.22.1",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"typescript": "4.2.2"
},
"dependencies": {
"@theme-ui/color": "^0.3.1",
"fp-ts": "^2.11.4",
"io-ts": "^2.2.16",
"jest": "^25.5.1",
"node-fetch": "^2.6.1",
"validate-npm-package": "^1.0.5"
},
"lint-staged": {
"**/packages/slice-machine/**/*.@(js|jsx|ts|tsx|)": "npm --prefix ./packages/slice-machine run lint:precommit",
"**/packages/slicemachine-core/**/*.@(js|jsx|ts|tsx|)": "npm --prefix ./packages/slicemachine-core run lint:precommit",
"**/packages/sm-init/**/*.@(js|jsx|ts|tsx|)": "npm --prefix ./packages/sm-init run lint:precommit",
"**/packages/**/**/*": "prettier --write --ignore-unknown"
}
}