-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.16 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.16 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
{
"name": "autui",
"version": "0.0.0",
"license": "UNLICENSED",
"main": "./dist/autui.umd.js",
"scripts": {
"dev": "vite --host",
"build:doc": "vite build",
"build:types": "tsc -p lib/tsconfig.build.json --emitDeclarationOnly",
"build": "node ./scripts/build.lib.js",
"serve": "vite preview",
"lint": "eslint --ext ts,tsx,js,jsx .",
"lint:fix": "eslint --ext ts,tsx,js,jsx --fix .",
"rollup:types": "api-extractor run",
"index:examples": "node ./scripts/generate_example_indices.js && eslint --fix src/view/examples/routes.tsx",
"test": "jest --coverage",
"publish:local": "cd dist && npm publish --registry http://localhost:8081/repository/npm-hosted/"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.18.5",
"@testing-library/react": "^13.4.0",
"@types/color": "^3.0.2",
"@types/jest": "^28.1.7",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@vitejs/plugin-react": "^3.1.0",
"color": "^4.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"front-matter": "^4.0.2",
"immer": "^9.0.15",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.0.2",
"markdown-to-jsx": "^7.1.3",
"prettier": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.0.9",
"react-hook-form": "^7.34.2",
"react-icons": "^4.2.0",
"react-router-dom": "^6.3.0",
"react-syntax-highlighter": "^15.4.4",
"styled-components": "^5.3.5",
"ts-jest": "^28.0.8",
"typescript": "^4.3.2",
"vite": "^4.1.4"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"styled-components": "5.x"
},
"files": [
"dist"
],
"dependencies": {
"polished": "^4.2.2",
"use-sync-external-store": "^1.2.0"
}
}