forked from remix-run/history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.08 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
{
"private": true,
"scripts": {
"build": "node ./scripts/build.js",
"clean": "git clean -fdX .",
"lint": "eslint .",
"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": "^2.1.1",
"@ampproject/rollup-plugin-closure-compiler": "0.21.0",
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.1.0",
"@babel/preset-modules": "^0.1.1",
"@rollup/plugin-replace": "^2.2.1",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.x",
"babel-loader": "^8.0.4",
"babel-plugin-dev-expression": "^0.2.1",
"chalk": "^3.0.0",
"eslint": "6.x",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"expect": "^21.0.0",
"express": "^4.17.1",
"jest-mock": "^21.0.0",
"jsonfile": "^5.0.0",
"karma": "^3.1.3",
"karma-browserstack-launcher": "^1.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"prompt-confirm": "^2.0.4",
"rollup": "^1.27.9",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-prettier": "^0.6.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.27.0",
"semver": "^7.1.3",
"typescript": "^3.8.3",
"webpack": "^3.12.0"
},
"workspaces": {
"packages": [
"packages/history"
]
},
"filesize": {
"build/history/history.production.min.js": {
"none": "5 kB"
},
"build/history/umd/history.production.min.js": {
"none": "6 kB"
}
}
}