-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.49 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
{
"name": "ic-reactor",
"private": true,
"description": "A React library for working with Internet computer Actors",
"author": "Behrad Deylami <b3hr4d@live.com>",
"license": "MIT",
"scripts": {
"bundle": "lerna run bundle",
"build": "lerna run build",
"clean": "lerna run clean",
"test": "lerna run test",
"lint": "eslint . --ext .ts",
"e2e": "cd e2e && sh ./test.sh",
"docs:serve": "serve@latest ./docs",
"docs:build": "typedoc --options ./typedoc.json",
"lerna-publish": "yarn clean && yarn build && lerna publish"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git@github.com:b3hr4d/ic-reactor.git"
},
"engines": {
"node": ">=16.0.0"
},
"workspaces": [
"examples/*",
"packages/*",
"e2e"
],
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "7.23",
"@babel/preset-typescript": "^7.23.3",
"@mxssfd/typedoc-theme": "^1.1.3",
"@peculiar/webcrypto": "^1.4",
"@testing-library/jest-dom": "^6.1",
"@testing-library/react": "^14.1",
"@types/jest": "^29.5",
"@types/node": "^22.9",
"@types/react": "18.2",
"@types/react-test-renderer": "^18.0",
"@types/xmlhttprequest": "^1",
"@typescript-eslint/eslint-plugin": "^7.0",
"@typescript-eslint/parser": "^7.0",
"@typescript-eslint/type-utils": "^7.0.2",
"babel-loader": "^9.1.3",
"babel-plugin-transform-import-meta": "^2.2.1",
"eslint": "^8.57",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9",
"eslint-plugin-prettier": "^4",
"fake-indexeddb": "5.0.1",
"html-webpack-plugin": "^5.6.0",
"jest": "29.7",
"jest-fetch-mock": "^3.0",
"lerna": "^8",
"react": "^18.2",
"react-dom": "^18.2",
"react-test-renderer": "18.2",
"svelte-jester": "3.0",
"text-encoding": "0.7.0",
"ts-jest": "29.1",
"ts-loader": "^9.5.1",
"typedoc": "^0.25",
"typedoc-plugin-coverage": "^3.1.0",
"typedoc-plugin-external-resolver": "^1.0.3",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-include-example": "^1.2.0",
"typedoc-plugin-mdn-links": "^3.1.16",
"typescript": "^5.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"whatwg-fetch": "^3.6.20",
"xmlhttprequest": "^1.8"
},
"resolutions": {
"punycode": "^2.3.1"
},
"packageManager": "yarn@4.5.1"
}