-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
34
35
36
37
38
39
40
41
42
{
"name": "storybook-extras",
"version": "0.0.0",
"license": "MIT",
"author": {
"name": "Mostafa Sherif",
"email": "[email protected]"
},
"scripts": {
"************ DEV **************": "",
"storybook": "nx storybook",
"build:watch": "nx run-many --target=build:watch --all --parallel=10 --exclude=demo",
"test": "nx test:storybook",
"************ PROD **************": "",
"build": "nx build",
"build:all": "nx run-many --target=build --all --parallel=10 --exclude=demo",
"chromatic": "nx chromatic",
"************ RELEASE **************": "",
"release": "auto shipit --no-changelog",
"changelog": "auto-changelog -c ./changelog/config.json"
},
"private": true,
"devDependencies": {
"@nrwl/nx-cloud": "latest",
"auto": "^10.3.0",
"auto-changelog": "^2.4.0",
"lerna": "^6.5.1",
"nx": "^15.6.3",
"prettier": "^2.6.2"
},
"workspaces": [
"demo",
"packages/*"
],
"auto": {
"plugins": [
"npm",
"released"
]
},
"packageManager": "[email protected]"
}