-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.74 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
{
"name": "@iiiristram/sagun",
"version": "1.0.0",
"description": "",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"files": [
"lib",
"server"
],
"scripts": {
"tsc": "rm -rf ./lib && tsc -p tsconfig.public.json",
"tsc:watch": "rm -rf ./lib && tsc -w -p tsconfig.public.json",
"test": "jest",
"init": "rm -rf ./node_modules && npm i --legacy-peer-deps",
"lint": "eslint .",
"format": "prettier --write .",
"link:dev": "node ./scripts/link.js",
"release:internal": "npm run test && npm run tsc && npm publish --registry https://npm.pkg.github.com",
"release": "npm run test && npm publish --access public --registry https://registry.npmjs.org/",
"stress:build": "rm -f tests/stress/index.js && tsc -b ./tests/stress/tsconfig.json && node ./scripts/replaceSrc.js",
"stress:test": "npm run stress:build && NODE_ENV=production node ./tests/stress/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IIIristraM/sagun.git"
},
"author": "iiiristram",
"license": "ISC",
"bugs": {
"url": "https://github.com/IIIristraM/sagun/issues"
},
"homepage": "https://github.com/IIIristraM/sagun#readme",
"dependencies": {
"@iiiristram/ts-type-utils": "1.0.0",
"react-async-ssr": "^0.7.2",
"typed-redux-saga": "^1.3.1"
},
"peerDependencies": {
"@redux-saga/core": "*",
"immutable": "^4.0.0",
"react": "^16.9.0 || ^17.0.0",
"react-dom": "^16.9.0 || ^17.0.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@redux-saga/types": "^1.1.0",
"@types/jest": "^29.5.1",
"@types/jsdom": "^21.1.1",
"@types/node": "^16.0.0",
"@types/react": "^16.0.0 || ^17.0.0",
"@types/react-dom": "^16.0.0 || ^17.0.0",
"@types/react-redux": "^7.1.15",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.8",
"immutable": "^4.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^22.0.0",
"prettier": "^2.2.1",
"react": "^16.9.0 || ^17.0.0",
"react-dom": "^16.9.0 || ^17.0.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"ts-jest": "^29.1.0",
"ts-loader": "^8.0.14",
"tslib": "^2.5.2",
"typescript": "^5.0.4",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0"
}
}