-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
124 lines (124 loc) · 3.31 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@twizzle-library/twizzle-library",
"version": "0.0.1-beta.3.32",
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"dependencies": {
"chroma-js": "^2.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ahmedwab/Twizzle"
},
"author": "Ahmedwab",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahmedwab/Twizzle/issues"
},
"homepage": "https://twizzlelibrary.com",
"keywords": [
"twizzle",
"library",
"react",
"next.js",
"typescript",
"frontend"
],
"scripts": {
"test": "jest",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"rollup": "rollup -c",
"publish": "npm publish --access=public"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/node-logger": "^6.4.19",
"@storybook/preset-create-react-app": "^4.0.1",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/chroma-js": "^2.1.4",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@types/react": "^18.0.5",
"@types/react-dom": "^17.0.13",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.29.4",
"identity-obj-proxy": "^3.0.0",
"react-icons": "^4.3.1",
"react-scripts": "5.0.0",
"react-uuid": "^1.0.3",
"rollup": "^2.77.3",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^6.4.19",
"storybook-anima": "^1.43.0",
"styled-components": "^5.3.5",
"typescript": "^4.6.2",
"webpack": "^5.70.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts"
}