-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.56 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.56 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
{
"name": "mireco",
"version": "4.1.1",
"description": "MIcro REact COmponents - extensible library for interfaces with no heavy deps",
"repository": "[email protected]:bor3ham/mireco.git",
"author": "Michael Boreham <[email protected]>",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "./node_modules/.bin/eslint \"src/**/*.ts*\"",
"build": "node scripts/build.js",
"watch": "node scripts/watch.js",
"prepare": "npm run build"
},
"dependencies": {
"classnames": "^2.3.2",
"date-fns": "^2.3.0",
"humanize-duration": "^3.28.0",
"parse-duration": "^1.0.3",
"react-textarea-autosize": "^8.3.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.2 || ^18.2.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.2 || ^18.2.0 || ^19.0.0"
},
"devDependencies": {
"@types/humanize-duration": "^3.27.1",
"@types/react": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"concurrently": "^5.2.0",
"deep-equal": "^2.2.1",
"esbuild": "^0.25.0",
"esbuild-sass-plugin": "^3.3.1",
"esbuild-svg": "^1.0.3",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^5.7.3"
}
}