-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.38 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
43
44
45
46
47
{
"name": "folo",
"private": true,
"workspaces": [
"packages/**",
"scripts/**"
],
"repository": "https://github.com/jalal246/folo",
"author": "Jalal Maskoun jimmy002020@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "lerna run build",
"prepublish": "yarn build",
"publish": "lerna publish",
"storybook": "start-storybook -p 6006",
"gh-pages:clean": "rimraf _gh-pages",
"gh-pages:build": "build-storybook -c .storybook -o _gh-pages",
"gh-pages:publish": "gh-pages -d _gh-pages",
"gh-pages": "yarn gh-pages:clean && yarn gh-pages:build && yarn gh-pages:publish"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/react": "^6.1.11",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^13.1.8",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"dependencies": {
"builderz": "0.11.0"
}
}