-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.42 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
{
"name": "@leoncik/p14-hrnet-plugin",
"version": "1.0.1",
"description": "A custom select menu component made for my 14th OpenClassrooms project",
"homepage": "https://leonard-wojcik-p14-plugin.netlify.app/",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "vitest",
"test:prepush": "vitest run",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"keywords": [
"React",
"Select menu",
"OpenClassrooms"
],
"author": "leoncik",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/leoncik/LeonardWojcik_14_30082022_plugin.git"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^14.0.1",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack4": "^6.5.12",
"@storybook/manager-webpack4": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.18",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vitest/coverage-c8": "^0.23.2",
"babel-loader": "^8.2.3",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-storybook": "^0.6.4",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.5",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^2.63.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.33.0",
"rollup-plugin-uglify": "^6.0.4",
"styled-components": "^5.3.5",
"typescript": "^4.5.4",
"vitest": "^0.23.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.5"
},
"dependencies": {},
"lint-staged": {
"*.{tsx,ts}": "eslint --cache --fix",
"*.{ts,tsx,css,md}": "prettier --write"
}
}