-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "universal-react-dropdown",
"version": "0.4.2",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nightness/universal-react-dropdown"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && npm run copy-css",
"copy-css": "rsync -a --prune-empty-dirs --include '*/' --include '*.css' --exclude '*' dev-env/src/components/Dropdown/ dist/",
"publish": "npm run build && npm publish --access public",
"lint": "eslint 'src/**/*.{ts,tsx}'"
},
"keywords": [],
"author": "nightness",
"company": "Brainwires",
"license": "MIT",
"description": "",
"dependencies": {
"react": "^18.*",
"react-dom": "^18.*"
},
"devDependencies": {
"@types/node": "^20.14.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-react": "^7.35.0",
"typescript": "^5.5.4"
}
}