-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
86 lines (86 loc) · 2.9 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
{
"name": "react-bootstrap-tagsinput",
"version": "0.7.6",
"description": "A chip input field using bootstrap.",
"author": "Fahri Sönmez",
"license": "MIT",
"main": "dist/index.min.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.tsx",
"keywords": [
"react",
"bootstrap",
"input",
"component",
"input tag",
"tag input",
"react input tag",
"react tag input component",
"react tag input"
],
"scripts": {
"prettier": "prettier --write \"./**/*.{css,scss,js,jsx,ts,tsx,json,html}\"",
"prettier:ci": "prettier --list-different \"./**/*.{js,jsx,ts,tsx,json,html}\"",
"build:module": "tsc --project tsconfig.build.json",
"build:minify": "uglifyjs ./dist/index.js -o ./dist/index.min.js",
"build:scss": "sass --no-source-map src/index.scss:dist/index.css src/bootstrap.scss:dist/bootstrap.css",
"build": "rm -fr dist && npm run build:module && npm run build:minify && npm run build:scss",
"test": "jest --silent",
"lint": "eslint --max-warnings 0 \"./src/**/*.{js,jsx,ts,tsx}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "rm -fr storybook-static && build-storybook -o storybook-static"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fa-So/react-bootstrap-tagsinput.git"
},
"bugs": {
"url": "https://github.com/Fa-So/react-bootstrap-tagsinput/issues"
},
"homepage": "https://fa-so.github.io/react-bootstrap-tagsinput/",
"devDependencies": {
"@babel/core": "^7.18.10",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack4": "^6.5.10",
"@storybook/manager-webpack4": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/classnames": "^2.3.1",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-loader": "^8.2.5",
"bootstrap": "^5.2.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.4",
"storybook-addon-sass-postcss": "^0.1.3",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4",
"uglify-js": "^3.16.3"
},
"peerDependencies": {
"bootstrap": "^5.0.0",
"react": "^18.*",
"react-dom": "^18.*"
}
}