-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "mozzarella",
"version": "1.0.7",
"description": "",
"keywords": [
"hooks",
"immer",
"react-hooks",
"react",
"state",
"state-management",
"store",
"typescript"
],
"author": "Kilian Ciuffolo <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:kilianc/mozzarella.git"
},
"sideEffects": "false",
"main": "lib/cjs/create-store.js",
"module": "lib/esm/create-store.js",
"types": "lib/esm/create-store.d.ts",
"devDependencies": {
"@testing-library/react": "15.0.7",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "27.4.1",
"@types/react": "18.3.12",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-jest": "26.7.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"immer": "10.1.1",
"jest": "25.5.4",
"prettier": "3.4.1",
"react": "18.3.1",
"react-fast-compare": "3.2.2",
"react-test-renderer": "18.3.1",
"ts-jest": "25.5.1",
"typescript": "3.9.10"
},
"peerDependencies": {
"immer": ">6.0.0",
"react": ">16.8.0",
"react-fast-compare": ">3.0.0"
},
"scripts": {
"lint": "tsc --noEmit && eslint 'src/**/*.ts' --max-warnings=0",
"build:esm": "tsc -p tsconfig-esm.json",
"build:cjs": "tsc -p tsconfig-cjs.json",
"build": "rm -rf lib && yarn build:esm && yarn build:cjs",
"test": "jest src/*.test.ts"
}
}