This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
90 lines (90 loc) · 2.84 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
{
"name": "media-overlay-library",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/AxisCommunications/media-overlay-library-js.git"
},
"version": "4.3.0",
"description": "React library for SVG drawing.",
"license": "MIT",
"main": "dist/esm/index.js",
"browser": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"keywords": [
"react",
"svg"
],
"scripts": {
"lint": "yarn lint:ts && yarn lint:css && yarn prettier:check",
"lint:fix": "yarn lint:ts --fix && yarn prettier:fix",
"lint:ts": "eslint --ext '.ts,.tsx' . --cache",
"lint:css": "stylelint './lib/**/*.tsx'",
"prettier:check": "prettier -c -u .",
"prettier:fix": "prettier -c -u -w .",
"build": "yarn build:esm && yarn build:bundle",
"build:esm": "tsc",
"build:bundle": "webpack --config webpack.config.js",
"dev": "webpack-dev-server --config webpack.example.js --hot",
"release": "sbin/release.sh"
},
"peerDependencies": {
"pepjs": ">= 0.4.3 < 1",
"react": "^17.0.1 || ^18.0.0",
"react-dom": "^17.0.1 || ^18.0.0"
},
"dependencies": {
"@juggle/resize-observer": "3.3.1"
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.17.10",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@types/react": "18.0.8",
"@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",
"css-loader": "6.7.1",
"eslint": "8.14.0",
"eslint-config-typescript-shareable": "1.7.0",
"eslint-import-resolver-node": "0.3.6",
"eslint-plugin-functional": "4.2.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"pepjs": "0.5.3",
"postcss": "8.4.13",
"postcss-scss": "4.0.4",
"postcss-styled": "0.34.0",
"postcss-syntax": "0.36.2",
"prettier": "2.6.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-is": "18.1.0",
"semver": "7.3.7",
"style-loader": "3.3.1",
"styled-components": "5.3.5",
"stylelint": "14.8.1",
"stylelint-config-recommended": "7.0.0",
"stylelint-config-standard-scss": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"typescript": "4.6.4",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.8.1"
},
"packageManager": "[email protected]"
}