This repository has been archived by the owner on Apr 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.11 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
{
"name": "@iota-wiki/shared-components",
"version": "1.0.0",
"description": "Shared components you can use with the iota-wiki-cli",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run prettier && npm run lint",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"test": "jest --transformIgnorePatterns \"node_modules/(?!@toolz/allow)/\" --env=jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iota-wiki/shared-components.git"
},
"keywords": [
"iota",
"wiki"
],
"author": "Lucas Tortora",
"license": "ISC",
"bugs": {
"url": "https://github.com/iota-wiki/shared-components/issues"
},
"homepage": "https://github.com/iota-wiki/shared-components#readme",
"dependencies": {
"@docusaurus/theme-classic": "^2.3.1",
"@types/react": "^18.0.28",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5",
"@toolz/is-a-regular-object": "^1.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@jest/globals": "^29.5.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"babel-jest": "^29.5.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.4",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.5"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"peerDependencies": {
"react": ">=16"
}
}