-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
48
49
50
51
52
53
54
55
{
"name": "gio-workspace",
"version": "1.0.0",
"license": "MIT",
"author": "Giordano Ricci <[email protected]>",
"repository": "github:Elfo404/gio",
"private": true,
"workspaces": [
"./packages/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o public",
"test": "jest",
"size": "npm run size --workspaces --if-present",
"build:all": "lerna run build",
"publish:pre": "lerna publish --conventional-commits --conventional-prerelease --no-changelog --yes --dist-tag next",
"publish:stable": "lerna publish --conventional-commits --conventional-graduate --create-release github --yes"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/react": "^11.5.0",
"@size-limit/preset-small-lib": "^6.0.4",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-docs": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/react": "^6.3.12",
"@types/jest": "^27.0.2",
"babel-loader": "^8.2.3",
"husky": "^7.0.4",
"import-sort-style-module": "^6.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"prettier-plugin-import-sort": "^0.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"size-limit": "^6.0.4",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"importSort": {
".js, .ts, .tsx": {
"style": "module"
}
}
}