-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"name": "react-autocomplete-france",
"description": "React components for France Address Gouv Autocomplete",
"private": false,
"version": "1.0.9",
"type": "module",
"author": "Clément de Louvencourt <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/c-delouvencourt/react-autocomplete-france.git"
},
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc && vite build",
"dev": "npm start",
"start": "storybook dev -p 6006",
"storybook": "npm start",
"build-docs": "storybook build -o docs && touch ./docs/.nojekyll",
"lint": "eslint . --ext .ts,.tsx"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.20",
"@storybook/addon-interactions": "^7.0.20",
"@storybook/addon-links": "^7.0.20",
"@storybook/blocks": "^7.0.20",
"@storybook/react": "^7.0.20",
"@storybook/react-vite": "^7.0.20",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/node": "^20.3.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^7.0.20",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-dts": "^2.3.0"
},
"files": [
"dist"
]
}