-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.33 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.33 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
{
"name": "react-component-lib",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.js",
"style": "dist/styles.scss",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"setup": "npm i && npm run build && cd example && npm i",
"dev": "concurrently \" npm run watch \" \" npm run start --prefix example \" ",
"prebuild": "rm -rf dist",
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook",
"lint:fix": "eslint . --fix"
},
"author": "Momen Sherif",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.10",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/react": "^6.1.21",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.7",
"@types/jest": "^26.0.21",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"concurrently": "^6.0.0",
"css-loader": "^5.1.3",
"cssnano": "^4.1.10",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"node-sass": "^5.0.0",
"postcss": "^8.2.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.42.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-multi-input": "^1.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"sass-loader": "^10.1.1",
"storybook-css-modules-preset": "^1.0.7",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}