-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "react-shisell",
"version": "5.1.1",
"description": "React HoC which add analytics to your components using shisell-js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"LICENSE"
],
"repository": "https://github.com/Soluto/react-shisell",
"author": "Soluto",
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rimraf dist && tsc --project tsconfig.build.json",
"test": "jest --config jest.config.json",
"prettify": "prettier --write **/*.ts **/*.tsx"
},
"devDependencies": {
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^5.1.1",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@types/prop-types": "^15.7.0",
"@types/react": "^16.8.8",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"rimraf": "^3.0.0",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"dependencies": {
"shisell": "^1.1.0"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^16.8.0"
}
}