-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.47 KB
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
{
"name": "react-todo-component",
"version": "2.2.1",
"description": "An React todo component created using matirail ui",
"main": "lib/index.ts",
"module": "lib/index.ts",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"pretty-quick": "pretty-quick",
"lint:fix": "yarn lint --fix",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -c .storybook -o .out",
"build": "rollup -c",
"prepublishOnly": "yarn build",
"prepare": "husky install"
},
"files": [
"src",
"lib"
],
"lint-staged": {
"*": [
"npm run pretty-quick",
"npm run lint"
]
},
"np": {
"publish": false,
"tests": false
},
"keywords": [
"storybook",
"react",
"typescript"
],
"author": "Prateek Surana",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.9",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@storybook/addon-actions": "^6.1.9",
"@storybook/addon-essentials": "^6.1.9",
"@storybook/addon-links": "^6.1.9",
"@storybook/react": "^6.1.9",
"@testing-library/react": "12.1.2",
"@types/jest": "^29.1.1",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"babel-loader": "^8.2.2",
"eslint": "^8.24.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"framer-motion": "^7.5.1",
"husky": "^8.0.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"postcss": "^8.2.1",
"prettier": "^2.8.8",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-uuid": "^1.0.2",
"rollup": "^2.34.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"storybook-css-modules": "^1.0.8",
"ts-jest": "^29.0.3",
"typescript": "^4.1.2"
},
"peerDependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-uuid": "^1.0.2"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/material": "^5.10.7",
"clsx": "^1.2.1",
"csstype": "^3.1.1",
"lint-staged": "^13.2.3",
"pretty-quick": "^3.1.3"
}
}