-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "haystack-react",
"version": "4.0.0",
"description": "Project Haystack utilities for building React applications",
"main": "dist/index",
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"format": "prettier-eslint \"./**/*.ts\" --write",
"lint": "eslint --ext .ts .",
"prebuild": "npm run clean",
"test": "npm run lint",
"prepack": "npm run test && npm run build",
"doc": "npx rimraf ./docs && typedoc ./src --excludePrivate",
"checktypes": "tsc --noEmit"
},
"keywords": [
"project haystack",
"haystack",
"client",
"react",
"typescript"
],
"author": "Gareth Johnson",
"license": "BSD-3-Clause",
"homepage": "https://github.com/j2inn/haystack-react",
"email": "[email protected]",
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.36.0",
"@typescript-eslint/parser": "^5.36.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"rimraf": "^6.0.1",
"typedoc": "^0.27.6",
"typescript": "^5.1.3"
},
"dependencies": {
"haystack-core": "^3.0.0",
"haystack-nclient": "^4.0.0",
"haystack-units": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test && npm run checktypes",
"pre-push": "npm run lint && npm test && npm run checktypes"
}
}
}