-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.84 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
{
"name": "@hanseo0507/react-toast",
"description": "Toast your messages with Emoji",
"version": "1.0.1",
"repository": "https://github.com/hanseo0507/react-toast.git",
"author": "HanSu Lee <[email protected]>",
"license": "MIT",
"type": "module",
"source": "src/index.ts",
"main": "dist/react-toast.cjs",
"module": "dist/react-toast.esm.js",
"umd:main": "dist/react-toast.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install && cd ./demo && yarn",
"lint": "eslint --fix --cache",
"format": "prettier --write",
"dev": "rimraf dist && microbundle watch --jsx React.createElement --no-compress",
"build": "rimraf dist && microbundle --jsx React.createElement --jsxFragment React.Fragment"
},
"peerDependencies": {
"@emotion/react": ">=11",
"@emotion/styled": ">=11",
"framer-motion": "9.x",
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"framer-motion": "^9.0.4",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"microbundle": "^0.15.1",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
},
"lint-staged": {
"**/*.ts(x)": [
"eslint --fix --cache",
"prettier --write"
]
}
}