-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
144 lines (144 loc) · 4.75 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "react-resource-router",
"version": "0.29.1",
"description": "Configuration driven routing solution for React that manages SPA route matching, data fetching and progressive rendering",
"keywords": [
"react",
"router"
],
"homepage": "https://github.com/atlassian-labs/react-resource-router#readme",
"bugs": {
"url": "https://github.com/atlassian-labs/react-resource-router/issues"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/atlassian-labs/react-resource-router.git"
},
"license": "Apache-2.0",
"author": "Atlassian Pty Ltd",
"contributors": [
{
"name": "Jack Brown",
"email": "[email protected]"
},
{
"name": "Rohan Deshpande",
"email": "[email protected]"
},
{
"name": "Alberto Gasparin",
"email": "[email protected]"
},
{
"name": "Zekai Zheng",
"email": "[email protected]"
},
{
"name": "Dinesh Pandiyan",
"email": "[email protected]"
},
{
"name": "Prithveesh Goel",
"email": "[email protected]"
}
],
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/cjs/index.d.ts",
"scripts": {
"build": "npm run build:clean && npm run build:types-cjs && npm run build:types-esm && npm run build:cjs && npm run build:esm",
"build:cjs": "babel src --out-dir build/cjs --extensions \".ts,.tsx\" --presets @babel/env",
"build:clean": "rm -rf ./build",
"build:esm": "babel src --out-dir build/esm --extensions \".ts,.tsx\"",
"build:types-cjs": "tsc --emitDeclarationOnly --project tsconfig.build.json --outDir build/cjs",
"build:types-esm": "tsc --emitDeclarationOnly --project tsconfig.build.json --outDir build/esm",
"docs": "npx docsify-cli serve docs",
"lint": "eslint --ext .ts,.tsx,.js src/ examples/",
"lint:deps": "madge -c --extensions ts,tsx src",
"lint:fix": "eslint --ext .ts,.tsx,.js src/ examples/ --fix",
"lint:types": "tsc --noEmit",
"lint:types-watch": "tsc --noEmit --watch",
"release": "npx changeset publish",
"start": "webpack-dev-server --open",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"lodash.noop": "^3.0.1",
"path-to-regexp": "^6.3.0",
"react-sweet-state": "^2.6.4",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.24.0",
"@changesets/cli": "^2.27.1",
"@codeshift/cli": "^0.22.0",
"@codeshift/test-utils": "^0.3.2",
"@codeshift/utils": "^0.2.5",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/history": "^4.7.6",
"@types/history-5": "npm:@types/history@^5.0.0",
"@types/jest": "^29.5.12",
"@types/jscodeshift": "^0.11.11",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.noop": "^3.0.9",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/url-parse": "^1.4.11",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@webpack-cli/serve": "^2.0.5",
"babel-eslint": "^10.0.2",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-types": "^6.26.0",
"docsify-cli": "^4.4.4",
"dtslint": "^4.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"history": "4.10.1",
"history-5": "npm:history@^5.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jscodeshift": "^0.15.2",
"madge": "^6.1.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3",
"webpack": "^5.90.3",
"webpack-dev-server": "^5.0.2"
},
"peerDependencies": {
"@babel/runtime": "^7",
"@types/react": "^16.9.35 || ^18.2.64",
"@types/react-dom": "^16.9.8 || ^18.2.21",
"history": "^4 || ^5",
"react": "^16.8.0 || ^18.2.0",
"react-dom": "^16.8.0 || ^18.2.0"
},
"engines": {
"node": ">=16.0"
}
}