-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.27 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
{
"name": "bard-router",
"version": "3.0.0",
"description": "More than just a routing solution, for React/Mobx applications",
"homepage": "https://github.com/AoDev/bard-router",
"main": "lib/index.js",
"scripts": {
"build:js": "del-cli lib && babel src --out-dir lib --extensions '.ts,.tsx'",
"build:types": "tsc --emitDeclarationOnly --listEmittedFiles",
"build": "npm run build:js && npm run build:types",
"lint": "eslint src --quiet",
"prepare": "NODE_ENV=production && npm run build",
"tag-release": "npm test && standard-version",
"test-unit": "jest",
"test": "jest"
},
"keywords": [
"router",
"react",
"mobx"
],
"repository": {
"type": "git",
"url": "git@github.com:AoDev/bard-router.git"
},
"author": "Kevin Purnelle <kevin.purnelle@gmail.com> (http://kevinpurnelle.com/)",
"license": "MIT",
"dependencies": {
"history": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "7.23.0",
"@babel/compat-data": "7.23.2",
"@babel/core": "7.23.2",
"@babel/eslint-parser": "7.22.15",
"@babel/plugin-transform-runtime": "7.23.2",
"@babel/preset-env": "7.23.2",
"@babel/preset-react": "7.22.15",
"@babel/preset-typescript": "7.23.2",
"@babel/runtime": "7.23.2",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.5.1",
"@types/history": "5.0.0",
"@types/jest": "29.5.6",
"@types/react": "18.2.33",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"babel-jest": "29.7.0",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-module-resolver": "5.0.0",
"del-cli": "5.1.0",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"mobx": "6.10.2",
"mobx-react": "9.0.1",
"prettier": "3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"standard-version": "9.5.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}