-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.25 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
{
"name": "spicy-hooks",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/salsita/spicy-hooks.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"react": "^18.2.0",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@lerna-lite/cli": "^1.12.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.4",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.3.1",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.3",
"typedoc": "next",
"typescript": "^4.8.4"
},
"scripts": {
"preinstall": "git config core.hooksPath git-hooks",
"prepack": "yarn build",
"build": "tsc -b packages/*/tsconfig.build.json",
"watch": "tsc -b packages/*/tsconfig.build.json -w",
"clean-build": "rm -rf packages/*/{tsconfig.tsbuildinfo,lib}",
"test": "jest",
"lint": "eslint . --ext .js,.ts,.tsx",
"typedoc": "typedoc packages/core/src/index.ts packages/observables/src/index.ts packages/utils/src/index.ts",
"redirect-refs": "yarn spicy redirect-refs {packages/**/*.md,typedoc/**/*.html} -b next -p https://spicy-hooks.salsita.co https://github.com/salsita/spicy-hooks/tree https://github.com/salsita/spicy-hooks/blob",
"spicy": "cross-env node packages/bin/lib/spicy.js",
"lerna": "node -r dotenv/config node_modules/.bin/lerna"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/packages/[^/]*/lib/.*"
],
"modulePathIgnorePatterns": [
"<rootDir>/packages/[^/]*/lib/.*"
],
"globals": {
"tsconfig": "./tsconfig.json"
}
},
"packageManager": "[email protected]"
}