-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
108 lines (108 loc) · 3.55 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
105
106
107
108
{
"name": "react-customize-token-input",
"version": "2.6.1",
"description": "A react token (tag) input component. Allow customize data structure and Look & Feel",
"keywords": [
"react",
"token",
"tag",
"token input",
"tag input",
"preprocess",
"inline edit",
"customize",
"customize data structure",
"customize render"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"prepublish": "yarn run lint && yarn run test && yarn run build",
"build": "yarn run build:clean && yarn run build:scss-types && yarn run build:webpack && yarn run build:examples",
"build:clean": "rm -rf {lib,dist}/*",
"build:scss-types": "typed-scss-modules src --nameFormat none --exportType default",
"build:webpack": "webpack",
"build:examples": "cd examples; webpack",
"lint": "yarn run lint:eslint && yarn run lint:style && yarn run lint:type",
"lint:eslint": "eslint --max-warnings 0 --ext .jsx,.js,.tsx,.ts src examples",
"lint:style": "stylelint --custom-syntax postcss-scss '**/*.scss' --fix",
"lint:type": "tsc --noEmit true",
"test": "jest --coverage",
"dev": "cd examples; webpack && webpack serve"
},
"repository": {
"type": "git",
"url": "[email protected]:seawind543/react-token-input.git"
},
"author": "Mark Lin <[email protected]>",
"homepage": "https://github.com/seawind543/react-token-input",
"license": "MIT",
"peerDependencies": {
"react": "^16.10.2 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"classnames": "^2.5.1",
"keydown-key": "^1.4.2",
"react-input-autosize": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/eslint-parser": "^7.25.7",
"@babel/eslint-plugin": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/react-input-autosize": "^2.2.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-webpack-plugin": "^4.2.0",
"html-webpack-plugin": "^5.6.0",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"mockdate": "^3.0.5",
"node-sass": "^9.0.0",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.6",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dev-utils": "^12.0.1",
"react-dom": "^18.3.1",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"stylelint": "^16.9.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"stylelint-selector-bem-pattern": "^4.0.1",
"stylelint-webpack-plugin": "^5.0.1",
"ts-loader": "^9.5.1",
"typed-scss-modules": "^8.0.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}