forked from pbeshai/use-query-params
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.12 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
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.18.6",
"@better-builds/package-bundler": "^1.3.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/react": "^17.0.0",
"@types/react-router": "^5.1.13",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jsdom": "^20.0.0",
"lerna": "^5.1.6",
"lerna-audit": "^1.3.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"query-string": "^6.12.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"tsd": "^0.22.0",
"typescript": "^4.2.4",
"vitest": "^0.18.1"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-router",
"**/react-router-dom",
"**/history",
"**/react-router-dom-6",
"**/react-router-dom-5",
"**/history-5",
"**/history-4"
]
},
"scripts": {
"audit": "lerna-audit",
"clean": "lerna run clean",
"build": "lerna run build --scope \"*-query-params\"",
"build:uqp": "lerna run build --scope \"use-query-params\"",
"build:adapter": "lerna run build --scope \"use-query-params-adapter-react-router-6\"",
"build:sqp": "lerna run build --scope \"serialize-query-params\"",
"clean:uqp": "lerna run clean --scope \"use-query-params\"",
"test": "vitest",
"test:uqp": "vitest --root ./packages/use-query-params/",
"test:sqp-all": "yarn workspace serialize-query-params test-all",
"test:sqp": "vitest --root ./packages/serialize-query-params/",
"test:lerna": "lerna run test --scope \"*-query-params\" --stream",
"lint": "lerna run lint --scope \"*-query-params\"",
"prettier": "lerna run prettier --scope \"*-query-params\""
}
}