-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.6 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@team-aliens/design-system",
"version": "1.0.2",
"description": "this is @aliens/design-system",
"main": "dist/index",
"module": "dist/index",
"keywords": [
"storybook",
"design-system"
],
"repository": {
"type": "git",
"url": "https://github.com/team-aliens/design-system.git"
},
"author": "Josanghyeon <[email protected]> (https://github.com/KOVELO2005)",
"files": [
"dist"
],
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "webpack && tsc --declaration",
"release": "auto shipit --base-branch=main",
"prepare": "husky install",
"analyze": "yarn build & webpack-bundle-analyzer ./dist/bundle-report.json",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime-corejs3": "^7.19.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@types/node": "^18.11.15",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-outside-click-handler": "^1.3.1",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@yarnpkg/pnpify": "^4.0.0-rc.33",
"@yarnpkg/sdks": "^3.0.0-rc.33",
"babel-loader": "^9.0.0",
"chromatic": "^6.14.0",
"clean-webpack-plugin": "^4.0.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.1",
"semantic-release": "^19.0.5",
"styled-components": "^5.3.6",
"ts-loader": "^9.4.1",
"typescript": "4.8.3",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.0"
},
"dependencies": {
"react-outside-click-handler": "^1.3.0"
},
"peerDependencies": {
"react": ">= 18",
"react-dom": ">= 18",
"react-router-dom": ">= 6",
"styled-components": ">= 5"
},
"lint-staged": {
"*.{tsx,ts}": "prettier --write"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}