forked from Aidurber/react-picky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.2 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-picky",
"version": "5.3.2",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/picky.mjs",
"license": "MIT",
"files": [
"/dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"lint": "eslint \"src/**/*.{ts,tsx}\" --cache --max-warnings 0",
"lint:fix": "yarn lint --fix",
"semantic-release": "semantic-release",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@testing-library/react": "^10.0.2",
"@types/jest": "^24.9.1",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"babel-jest": "^26.3.0",
"concurrently": "^4.1.2",
"cypress": "^4.3.0",
"esbuild": "^0.6.30",
"eslint": "6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "2.5.1",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.0",
"pretty-quick": "^2.0.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"rollup": "^2.26.9",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-dts": "^1.4.12",
"rollup-plugin-esbuild": "^2.5.0",
"rollup-plugin-filesize": "^9.0.2",
"semantic-release": "^17.0.4",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Aidurber/react-picky.git"
}
}