-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.41 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.41 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
93
{
"name": "@tager/web-components",
"version": "0.5.6",
"author": "Ivan Saranchonkau",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/web-components.esm.js",
"typings": "dist/main.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"emit-declarations": "tsc --project tsconfig.json --emitDeclarationOnly",
"build-js": "rollup -c rollup.config.js",
"build-package": "yarn build-js && yarn emit-declarations",
"prepare": "husky install"
},
"dependencies": {
"@types/node": "16.x",
"http-status-codes": "^2.2.0",
"lazysizes": "^5.3.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-url": "^6.1.0",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/react": "^6.3.7",
"@svgr/rollup": "^5.5.0",
"@svgr/webpack": "^5.5.0",
"@tager/web-core": "^0.3.33",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.12",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-eslint": "10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.12.22",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.9.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"next": "^13.1.2",
"prettier": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.56.2",
"rollup-plugin-esbuild": "^4.5.0",
"styled-components": "^5.3.5",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@tager/web-core": "^0.3.33",
"next": "^13.1.2",
"react": "^18.2.0",
"styled-components": "^5.3.0"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"publishConfig": {
"access": "public"
},
"browserslist": [
"edge 13",
"firefox 45",
"chrome 49",
"safari 10"
]
}