-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.44 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
{
"name": "resub-entity",
"version": "0.2.18",
"description": "This project eases the use of ReSub by providing a simple function to create a Store for an entity",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/",
"tsconfig.json",
".parcelrc",
".eslintrc",
".babelrc",
".prettierrc",
"jest.config.js"
],
"keywords": [
"resub",
"store",
"entity",
"react",
"flux",
"subscriptions"
],
"author": "BiggA94",
"repository": {
"type": "git",
"url": "https://github.com/BiggA94/resub-entity"
},
"license": "MIT",
"scripts": {
"build": "parcel build ./src/index.ts",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@parcel/babel-preset-env": "^2.8.2",
"@parcel/config-default": "^2.4.1",
"@parcel/packager-ts": "2.8.2",
"@parcel/transformer-typescript-tsc": "^2.4.1",
"@parcel/transformer-typescript-types": "2.8.2",
"@parcel/validator-eslint": "^2.4.1",
"@parcel/validator-typescript": "^2.4.1",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^13.0.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.15",
"@types/react": "^17.0.43",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-resub": "^0.7.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-junit": "^15.0.0",
"parcel": "^2.4.1",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"resub": "^2.3.1",
"rxjs": "^7.5.5",
"ts-jest": "^29.0.3",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"resub": "^2.3.1",
"rxjs": "^7.5.5"
},
"dependencies": {
"@swc/helpers": "^0.4.14"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"packageManager": "yarn@3.3.0"
}