-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.74 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
{
"name": "@lindapaiste/react-svg-patterns",
"version": "1.0.0",
"description": "A library of reusable components to create complex layered patterns in React.",
"keywords": [
"svg",
"art",
"shape",
"pattern"
],
"dependencies": {
"@lindapaiste/geometry": "^1.0.5",
"geometric": "^2.2.3"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"@types/geometric": "^2.2.0",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.0",
"typescript": "^4.2.0"
},
"peerDependencies": {
"react": "^17.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"prettier": "prettier --write src/**/*",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build-demo": "cd ./demo && react-app-rewired build && cd ../",
"start-demo": "cd ./demo && react-app-rewired start",
"test": "ts-jest"
},
"main": "./src/index.js",
"types": "./build/index.d.ts",
"workspaces": [
"./demo"
]
}