forked from remix-run/history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.24 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
{
"private": true,
"scripts": {
"build": "node ./scripts/build.js",
"clean": "git clean -fdX .",
"lint": "eslint .",
"format": "prettier --ignore-path .eslintignore --write .",
"publish": "node ./scripts/publish.js",
"size": "filesize",
"test": "node ./scripts/test.js",
"version": "node ./scripts/version.js",
"watch": "node ./scripts/watch.js"
},
"dependencies": {
"@ampproject/filesize": "^4.3.0",
"@ampproject/rollup-plugin-closure-compiler": "0.27.0",
"@babel/core": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-modules": "0.1.4",
"@babel/runtime": "^7.15.3",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-replace": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-dev-expression": "0.2.2",
"chalk": "^4.1.2",
"eslint": "^7.32.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.9.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"expect": "^21.0.0",
"express": "^4.17.1",
"jest-mock": "^21.0.6",
"jsonfile": "^6.1.0",
"karma": "^6.3.4",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "0.3.8",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"prettier": "^2.5.1",
"prompt-confirm": "^2.0.4",
"rollup": "^2.56.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-prettier": "^2.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "0.30.0",
"semver": "^7.3.5",
"typescript": "^4.3.5",
"webpack": "^3.12.0"
},
"workspaces": {
"packages": [
"packages/history"
]
},
"filesize": {
"build/history/history.production.min.js": {
"none": "5.06 kB"
},
"build/history/umd/history.production.min.js": {
"none": "6.03 kB"
}
}
}