-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.18 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
{
"name": "@mfellner/valtio-inversify",
"version": "1.0.0-alpha.0",
"description": "Create class-based valtio stores with inversify.",
"author": "Maximilian Fellner <mail@mfellner.eu>",
"repository": "https://github.com/mfellner/valtio-inversify",
"keywords": [
"valtio",
"inversify",
"inject",
"injection",
"ioc",
"react",
"state",
"proxy",
"store"
],
"license": "MIT",
"source": "lib/index.ts",
"main": "dist/main.js",
"module": "dist/module.mjs",
"types": "dist/types.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=12.7.0"
},
"files": [
"dist/"
],
"scripts": {
"start": "parcel --dist-dir build example/index.html",
"build": "parcel build",
"clean": "rm -rf dist/ .parcel-cache/",
"test": "jest",
"typecheck": "yarn tsc -p tsconfig.json --noEmit",
"release": "release-it",
"prepare": "husky install",
"reinstall": "rm -rf node_modules yarn.lock && yarn install"
},
"lint-staged": {
".ts": "eslint --fix"
},
"peerDependencies": {
"inversify": "*",
"reflect-metadata": "*",
"valtio": ">=1.7.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@release-it/conventional-changelog": "5.1.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "29.4.0",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"eslint": "8.32.0",
"eslint-plugin-valtio": "0.6.1",
"husky": "8.0.3",
"inversify": "6.0.1",
"jest": "29.4.1",
"jest-environment-jsdom": "29.4.1",
"jest-runner-eslint": "1.1.0",
"lint-staged": "13.1.0",
"parcel": "2.8.3",
"process": "0.11.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"reflect-metadata": "0.1.13",
"release-it": "15.6.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"valtio": "1.9.0"
}
}