This repository has been archived by the owner on Mar 27, 2020. It is now read-only.
forked from Aidurber/react-picky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
{
"name": "react-picky",
"version": "5.1.0",
"main": "dist/index.js",
"module": "dist/picky.esm.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"files": [
"/dist"
],
"scripts": {
"prepare-example": "yarn --cwd example install",
"start": "concurrently \"tsdx watch\" \"yarn start:example\"",
"start:example": "yarn --cwd example start",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^3.0.5",
"@semantic-release/git": "^7.0.18",
"@testing-library/react": "^9.3.2",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"concurrently": "^4.1.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"identity-obj-proxy": "^3.0.0",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.0",
"pretty-quick": "^2.0.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-filesize": "^6.2.1",
"semantic-release": "^15.13.30",
"tsdx": "^0.11.0",
"tslib": "^1.10.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"prop-types": "15.7.2",
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Aidurber/react-picky.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}