-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 2.12 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
{
"name": "react-multivalue-text-input",
"version": "2.5.0",
"description": " A text input component for React which maintains and displays a collection of entered values as an array of strings.",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"dev": "node src/dev/serve.js",
"clean": "rimraf dist",
"build": "npm run clean && node src/dev/build.js && npm run ts-types",
"test": "jest",
"lint": "eslint src/",
"validate": "run-s test lint",
"docs:serve": "npx styleguidist server",
"docs:build": "npx styleguidist build",
"prepublishOnly": "npm run build",
"ts-types": " tsc --emitDeclarationOnly --outDir dist"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.5.0",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"chokidar": "^3.5.3",
"commitizen": "^4.2.4",
"css-loader": "^6.7.1",
"css-tree": "^2.3.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.14.38",
"esbuild-css-modules-plugin": "^2.6.3",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.0.2",
"live-server": "^1.2.2",
"npm-run-all": "^4.1.5",
"react-docgen-typescript": "^2.2.2",
"react-styleguidist": "^11.2.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.1",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"typescript-plugin-css-modules": "^4.1.1",
"webpack": "^5.72.0"
},
"dependencies": {
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"files": [
"dist"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}