-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@jaewoong2/toast",
"version": "0.1.7",
"description": "Toast Message for React",
"contributors": [
{
"name": "@jaewoong2",
"email": "[email protected]"
}
],
"keywords": [
"toastMessage",
"react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jaewoong2/-woongs-toast.git"
},
"license": "MIT",
"main": "build/index.js",
"module": "build/index.es.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"sideEffects": false,
"scripts": {
"lint": "eslint ./src/ --ext .ts,.tsx --config .eslintrc.js",
"git": "git add . && git commit -m 'publish' && git push",
"build": "tsc --emitDeclarationOnly & rollup -c",
"publish:patch": "npm run git && npm run build && npm version patch && npm publish",
"publish:minor": "npm run git && npm run build && npm version minor && npm publish",
"storybook": "start-storybook -p 6006 --no-manager-cache",
"build-storybook": "build-storybook",
"test": "react-scripts test",
"chromatic": "npx chromatic --project-token=CHROMATIC_PROJECT_TOKEN"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@react-theming/storybook-addon": "^1.1.3",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.0-alpha.29",
"@storybook/manager-webpack5": "^6.5.0-alpha.29",
"@storybook/react": "^6.4.9",
"@types/react": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-loader": "^8.2.3",
"babel-preset-react-app": "^10.0.0",
"chromatic": "^6.6.4",
"eslint": "^8.5.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-storybook": "^0.5.11",
"react": "^17.0.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.1",
"rollup": "^2.61.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16",
"react-is": ">=16",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0"
},
"prettier": {
"parser": "typescript",
"semi": false,
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "all",
"endOfLine": "lf",
"bracketSpacing": true
},
"bugs": {
"url": "https://github.com/jaewoong2/-woongs-toast/issues"
},
"readme": "ERROR: No README data found!",
"homepage": "https://github.com/jaewoong2/-woongs-toast#readme"
}