-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "@drawbotics/use-filters",
"version": "3.2.2",
"description": "Hook to manage filters and keep them in sync with the url",
"license": "UNLICENSED",
"main": "dist/index.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/Drawbotics/drawbotics-use-filters"
},
"scripts": {
"clean": "rimraf dist/",
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run clean && npm run test && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --ext ts,tsx --format node_modules/eslint-formatter-pretty -c .eslintrc.js --max-warnings=0"
},
"peerDependencies": {
"history": "^5.3.0",
"react": "^16.0.0"
},
"devDependencies": {
"@testing-library/react-hooks": "^5.1.0",
"@types/history": "^4.7.3",
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.149",
"@types/react": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"eslint": "^6.7.2",
"eslint-formatter-pretty": "^3.0.1",
"eslint-plugin-jest": "^23.1.1",
"history": "^5.3.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"dependencies": {
"lodash": "^4.17.15",
"query-string": "^6.9.0"
}
}