-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.15 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "rx-recoil",
"version": "0.0.28",
"license": "MIT",
"repository": {
"url": "https://github.com/kaoDev/rx-recoil"
},
"author": {
"name": "Kalle Ott",
"url": "https://github.com/kaoDev/"
},
"description": "rx-recoil is a state management library inspired by recoil, but built on top of the rxjs tools",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"test-all": "nx run-many --target=test --all",
"lint-all": "nx run-many --target=lint --all",
"build-all": "nx affected:build --all",
"type-check": "npx nx run-many --target=tsCheck --all",
"prepublish": "npm run sync-version && npm run test-all && npm run type-check && npm run lint-all && npm run build-all",
"sync-version": "node --experimental-json-modules --experimental-modules ./scripts/syncVersion.mjs",
"publish:core": "npm publish dist/packages/core",
"publish:persistence": "npm publish dist/packages/persistence",
"publish:query": "npm publish dist/packages/query",
"publish": "npm run publish:core && npm run publish:persistence && npm run publish:query"
},
"private": false,
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@nrwl/cli": "14.7.5",
"@nrwl/cypress": "14.7.5",
"@nrwl/eslint-plugin-nx": "14.7.5",
"@nrwl/jest": "14.7.5",
"@nrwl/linter": "14.7.5",
"@nrwl/react": "^14.7.5",
"@nrwl/web": "14.7.5",
"@nrwl/workspace": "14.7.5",
"@nxext/vitest": "^14.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "28.1.1",
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "~5.37.0",
"@typescript-eslint/parser": "~5.37.0",
"babel-jest": "28.1.1",
"cypress": "^10.7.0",
"eslint": "~8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"nx": "14.7.5",
"prettier": "^2.7.1",
"react-test-renderer": "18.2.0",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.8.3"
},
"workspaces": [
"packages/**"
],
"dependencies": {
"cd": "^0.3.3",
"core-js": "^3.25.2",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^3.1.4",
"react-router-dom": "6.3.0",
"regenerator-runtime": "0.13.9",
"rxjs": "^7.5.6",
"tslib": "^2.4.0"
}
}