-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.01 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
{
"name": "react-input-suggestions",
"version": "2.3.4",
"description": "A React input component with pluggable suggestions and autocomplete",
"keywords": [
"react",
"autocomplete",
"search",
"suggestions",
"typescript",
"arrow key navigation",
"esbuild",
"input"
],
"repository": {
"type": "git",
"url": "https://github.com/adhamu/react-input-suggestions"
},
"license": "MIT",
"author": "Amit Dhamu <[email protected]>",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "npx rimraf dist",
"build": "node esbuild.config.js build",
"postbuild": "tsc --project tsconfig.build.json",
"predeploy": "node esbuild.config.js dev",
"deploy": "gh-pages -d public",
"dev": "node esbuild.config.js dev --watch",
"lint": "yarn lint:scripts && yarn lint:styles",
"lint:scripts": "eslint .",
"lint:styles": "stylelint 'src/**/*.ts*'",
"test": "jest --colors",
"test:coverage": "yarn test --coverage",
"type": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-string-replace": "^1.1.0"
},
"devDependencies": {
"@adhamu/zero": "^5.1.2",
"@emotion/jest": "^11.10.5",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@swc/core": "^1.3.25",
"@swc/jest": "^0.2.24",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.5",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"arge": "^1.2.0",
"chokidar": "^3.5.3",
"esbuild": "^0.16.15",
"gh-pages": "^4.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"live-server": "^1.2.2",
"postcss-syntax": "^0.36.2",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
}
}