forked from artsy/palette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 918 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
27
{
"name": "palette",
"private": true,
"scripts": {
"start": "concurrently --raw --kill-others 'yarn workspace @artsy/palette watch' 'yarn workspace artsy-palette-docs start'",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"compile-palette": "yarn workspace @artsy/palette compile",
"type-check": "yarn compile-palette && yarn workspace @artsy/palette run type-declarations && yarn workspaces run type-check",
"build-docs": "yarn compile-palette && yarn workspace artsy-palette-docs build",
"storybook": "yarn workspace @artsy/palette storybook",
"visual-test": "yarn workspace @artsy/palette visual-test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/artsy/palette.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"concurrently": "4.1.0",
"lerna": "3.13.1"
}
}