-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
104 lines (104 loc) · 3.6 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-phonenr-input",
"version": "3.2.5",
"description": "An automated and intuitive international and national phone input field",
"author": "Kai Hotz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:KaiHotz/React-PhoneNr-Input.git"
},
"homepage": "https://github.com/KaiHotz/React-PhoneNr-Input",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16.x"
},
"scripts": {
"start": "NODE_ENV=development BABEL_ENV=development yarn storybook",
"build": "rimraf dist && NODE_ENV=production BABEL_ENV=production rollup -c",
"lint": "yarn check-types && yarn eslint && yarn stylelint",
"lint:fix": "yarn eslint:fix && yarn stylelint:fix",
"eslint": "eslint . --ext .js,.jsx,.tsx,.ts",
"eslint:fix": "eslint . --ext .js,.jsx,.tsx,.ts --fix",
"stylelint": "stylelint \"**/*.{css,scss,sass}\"",
"stylelint:fix": "stylelint \"**/*.{css,scss,sass}\" --fix",
"check-types": "tsc --noEmit true",
"ci": "yarn lint && yarn test --watch=false",
"test": "vitest --config ./vitest.config.ts",
"release": "yarn ci && yarn build && npm publish",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:deploy": "yarn storybook:build && touch ./storybook-static/.nojekyll && gh-pages -d ./storybook-static -t true"
},
"peerDependencies": {
"react": "18.x",
"react-dom": "18.x"
},
"dependencies": {
"immer": "^10.0.2",
"libphonenumber-js": "^1.10.41",
"lodash.omit": "^4.5.0",
"react-country-flag": "^3.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.2",
"@rollup/plugin-url": "^8.0.1",
"@storybook/addon-docs": "^7.3.2",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.3.2",
"@storybook/react": "^7.3.2",
"@storybook/react-vite": "^7.3.2",
"@storybook/testing-library": "^0.2.0",
"@svgr/rollup": "^8.1.0",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/lodash.omit": "^4.5.7",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"clsx": "^2.0.0",
"eslint": "latest",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "^0.6.13",
"gh-pages": "^6.0.0",
"jsdom": "^22.1.0",
"node-sass": "^9.0.0",
"postcss": "^8.4.28",
"postcss-scss": "^4.0.7",
"prettier": "3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.14.0",
"rimraf": "^5.0.1",
"rollup": "^3.28.1",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.66.1",
"storybook": "^7.3.2",
"stylelint": "^15.10.3",
"stylelint-prettier": "^4.0.2",
"stylelint-scss": "^5.1.0",
"tslib": "^2.6.2",
"typescript": "5.1.6",
"vite": "^4.4.9",
"vitest": "^0.34.3"
},
"packageManager": "yarn@3.6.3"
}