-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 1.01 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
{
"private": false,
"name": "guste-design",
"version": "1.0.0",
"author": "Mantas Mikalauskas <[email protected]>",
"engines": {
"node": "<=18.x.x",
"npm": "<=8.x.x"
},
"scripts": {
"clean": "lerna clean",
"deploy": "lerna run deploy",
"empty-cache": "lerna run empty-cache",
"init": "cd studio && sanity init && lerna run graphql-deploy && cd ..",
"storybook": "lerna run storybook --stream",
"graphql-deploy": "cd studio && npm run graphql-deploy && cd ..",
"lint": "lerna run lint --stream",
"fix": "lerna run fix --stream",
"test": "lerna run test --stream",
"build-storybook": "lerna run build-storybook",
"test-watch": "lerna run test-watch --stream",
"postinstall": "lerna bootstrap",
"sanity-deploy": "lerna run sanity-deploy",
"start": "lerna run empty-cache && lerna run start --parallel",
"start:web": "cd web && npm run start",
"start:studio": "cd studio && npm run start"
},
"devDependencies": {
"lerna": "^5.0.0"
}
}