forked from BibliothecaDAO/realms-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.78 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": "@bibliotheca-dao/core-lib",
"version": "3.11.0",
"license": "MIT",
"private": true,
"homepage": "https://github.com/BibliothecaForAdventurers/realms-react",
"repository": {
"type": "git",
"url": "https://github.com/BibliothecaForAdventurers/realms-react",
"directory": "packages/core-lib"
},
"author": {
"name": "Bibliothecca",
"url": "https://github.com/BibliothecaForAdventurers"
},
"sideEffects": false,
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf --no-glob ./dist && cross-env NODE_ENV=production microbundle --tsconfig ./tsconfig.build.json --jsx React.createElement --jsxFragment React.Fragment -f cjs,es --no-compress",
"build-react17jsx": "microbundle --tsconfig ./tsconfig.build.json --jsx jsx --jsxImportSource react --globals react/jsx-runtime=jsx --compress",
"dev": "microbundle watch",
"clean": "rimraf --no-glob ./dist ./coverage ./tsconfig.tsbuildinfo ./.eslintcache && jest --clear-cache",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"test": "run-s test-unit",
"test-unit": "jest --config jest.config.js",
"fix-all-files": "eslint . --ext .ts,.tsx,.js,.jsx --fix"
},
"dependencies": {
"@tsed/exceptions": "^6.129.0",
"dequal": "^2.0.3"
},
"devDependencies": {
"@bibliotheca-dao/eslint-config-bases": "workspace:^",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "29.0.0",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"cross-env": "7.0.3",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.0.1",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.6",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-regexp": "1.9.0",
"eslint-plugin-sonarjs": "0.15.0",
"eslint-plugin-testing-library": "5.6.1",
"jest": "29.0.2",
"microbundle": "0.15.1",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "3.0.2",
"ts-jest": "28.0.8",
"typescript": "4.8.2"
},
"peerDependencies": {
"react": "^17.0.2 || >= 18.0.0",
"react-dom": "^17.0.2 || >= 18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
}
}