-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
33 lines (33 loc) · 1.09 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
{
"name": "palette",
"private": true,
"scripts": {
"build-storybook": "export NODE_OPTIONS=--openssl-legacy-provider && yarn compile-palette && yarn workspace @artsy/palette build-storybook",
"compile-palette": "lerna run compile",
"lint": "lerna run lint",
"start": "yarn compile-palette && concurrently --raw --kill-others 'yarn workspace @artsy/palette watch' ",
"storybook": "yarn compile-palette && yarn workspace @artsy/palette storybook",
"test": "yarn compile-palette && lerna run test",
"pretype-check": "yarn compile-palette && lerna run type-declarations",
"type-check": "lerna run type-check",
"visual-test": "yarn compile-palette && yarn workspace @artsy/palette visual-test --auto-accept-changes"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/artsy/palette.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"resolutions": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"webpack": "5.52.1"
},
"devDependencies": {
"concurrently": "4.1.0",
"lerna": "6.4.1"
}
}