-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.01 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
{
"name": "next-batch-router",
"version": "1.0.0",
"description": "An alternative to next/router that batches push and replace calls. It allows for multiple pushes without overwriting each other.",
"repository": {
"type": "git",
"url": "git+https://github.com/youha-info/next-batch-router.git"
},
"keywords": [
"nextjs",
"router",
"batch"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/youha-info/next-batch-router/issues"
},
"homepage": "https://github.com/youha-info/next-batch-router",
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && rollup -c",
"prepack": "yarn build",
"test": "jest --verbose",
"dev": "conc -n NEXT,CYPRESS 'next -p 3050' 'cypress open'",
"e2e": "next build && yarn e2e:run",
"e2e:run": "conc -n NEXT,CYPRESS --kill-others --success command-CYPRESS 'next start -p 3050' 'yarn cypress:ci'",
"cypress:ci": "cypress run --headless --config screenshotOnRunFailure=false,video=false"
},
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./dist/dts/index.d.ts",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/es/index.js",
"default": "./dist/es/index.js"
},
"sideEffects": false,
"files": [
"dist"
],
"dependencies": {},
"peerDependencies": {
"next": "*",
"react": ">=16.8"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@types/jest": "^29.2.1",
"@types/node": "^18.0.6",
"@types/react": "^18.0.15",
"concurrently": "^7.5.0",
"cypress": "^10.11.0",
"jest": "^29.2.2",
"next": "^12.2.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}