-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.77 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
{
"name": "@digitalmonad/component-library",
"version": "0.1.0",
"description": "Custom React component library boilerplate",
"author": "Pavel Kocman",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"sideEffects": false,
"types": "dist/typings/index.d.ts",
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:types": "tsc -p tsconfig.build.json",
"build:js": "rollup -c rollup.config.js",
"test:jest": "jest",
"test:ts": "tsc",
"test": "npm run test:ts && npm run test:jest",
"lint:format": "prettier --check \"src/**/*\"",
"lint:js": "eslint src/**",
"lint": "npm run lint:format && npm run lint:js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digitalmonad/private-react-component-library.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/digitalmonad/private-react-component-library/issues"
},
"homepage": "https://github.com/digitalmonad/private-react-component-library#readme",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.11",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^11.2.7",
"@types/jest": "^27.5.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.6.2",
"rollup": "^2.72.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-node-externals": "^2.2.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"nanoid": "^3.3.4",
"polished": "^4.2.2",
"prop-types": "^15.8.1"
}
}