-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
119 lines (119 loc) · 3.46 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"scripts": {
"dev-server": "USERNAME=\"${USER}\" webpack serve --config example/webpack.config.mjs --mode development --hot",
"lint": "eslint . --ext .ts,.tsx",
"tsc": "tsc",
"test": "npm run test-unit && npm run test-types",
"test-unit": "jest",
"test-types": "tsd --typings test-types/index.d.ts --files test-types/**/*",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.build.json && ts-node scripts/build",
"postbuild": "prettier \"dist/**/*.ts\" --write",
"prepublishOnly": "ts-node scripts/pre-publish",
"prerelease": "npm run build",
"release": "ts-node scripts/release",
"postrelease": "npm run clean"
},
"name": "mutoid",
"version": "0.6.0-rc.1",
"description": "Reactive library for data fetching, caching, state management",
"repository": {
"type": "git",
"url": "https://github.com/facile-it/mutoid.git"
},
"author": "Iacopo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/facile-it/mutoid/issues"
},
"homepage": "https://engineering.facile.it/mutoid",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"volta": {
"node": "18.19.0"
},
"devDependencies": {
"@facile-it/tsconfig": "^0.2.0",
"@testing-library/react": "^14.1.2",
"@types/glob": "^7.2.0",
"@types/jest": "^29.5.11",
"@types/node": "^17.0.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/use-sync-external-store": "^0.0.6",
"eslint": "^8.56.0",
"eslint-config-facile": "^0.12.0",
"fast-check": "^2.12.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"fp-ts": "^2.16.2",
"fp-ts-laws": "^0.3.0",
"fp-ts-reactive": "^0.7.0",
"html-webpack-plugin": "^5.6.0",
"io-ts": "^2.2.21",
"io-ts-types": "^0.5.19",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rxjs": "^7.8.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsd": "^0.30.4",
"typescript": "^5.3.3",
"use-sync-external-store": "^1.2.0",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"peerDependencies": {
"fp-ts": "^2.10.5",
"fp-ts-reactive": "^0.6",
"io-ts": "^2.2.10",
"react": "^17.0.2 || ^18.2.0",
"rxjs": "^7.8",
"use-sync-external-store": "^1.2.0"
},
"peerDependenciesMeta": {
"io-ts": {
"optional": true
},
"react": {
"optional": true
},
"use-sync-external-store": {
"optional": true
}
},
"tags": [
"algebraic-data-types",
"fp-ts-rxjs",
"fp-ts",
"io-ts",
"react",
"reactive",
"reactivex",
"rxjs",
"typescript"
],
"keywords": [
"algebraic-data-types",
"fp-ts-rxjs",
"fp-ts",
"io-ts",
"isomorphic",
"react",
"reactive",
"reactivex",
"rxjs",
"typescript"
]
}