-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.47 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
{
"name": "effector-next-redirect",
"version": "1.0.1",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "run-s test:*",
"test:types": "tsc --noEmit",
"test:lint": "eslint . --ext .js,.ts,.tsx",
"build": "run-p build:*",
"build:module": "rollup -c",
"build:declarations": "tsc --emitDeclarationOnly && api-extractor run",
"prebuild": "rimraf dist",
"prepublish": "npm run build",
"postbuild": "rimraf dist/types",
"release": "standard-version"
},
"license": "MIT",
"author": "weyheyhey <[email protected]>",
"repository": "github:weyheyhey/effector-next-redirect",
"keywords": [
"next-server-redirect",
"next-redirect",
"effector",
"redirect",
"react",
"next"
],
"peerDependencies": {
"next": "^9.0.0",
"react": "^16.6.0",
"effector": "^20.12.0",
"effector-react": "^20.6.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-typescript": "^7.8.3",
"@commitlint/cli": "^8.3.5",
"@microsoft/api-extractor": "^7.7.8",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@wowvendor/commitlint-config": "^1.0.1",
"@wowvendor/eslint-config-base": "^2.0.0",
"@wowvendor/eslint-config-react": "^3.0.0",
"@wowvendor/eslint-config-typescript": "^2.0.0",
"cz-customizable": "^6.2.0",
"effector": "^20.12.1",
"effector-react": "^20.6.2",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"next": "^9.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.13.0",
"rimraf": "^3.0.2",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.3.3",
"standard-version": "^8.0.1",
"typescript": "^3.8.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{md,json}": [
"prettier --write"
]
}
}