-
-
Notifications
You must be signed in to change notification settings - Fork 265
/
package.json
48 lines (48 loc) · 1.61 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
{
"name": "next-redux-wrapper-mono",
"private": true,
"version": "7.0.0",
"description": "Redux wrapper for Next.js",
"scripts": {
"prepare": "husky install",
"clean": "lerna run clean && lerna clean --yes && rimraf node_modules",
"start": "yarn build && yarn start:all",
"start:all": "lerna run start --parallel",
"build": "lerna run build --stream",
"test": "lerna run test --stream --concurrency=1",
"test:quick": "lerna run test:quick --stream --concurrency=1",
"publish:release": "lerna publish --tag-version-prefix=\"\" --force-publish=* --no-push --no-git-tag-version",
"prettier": "prettier --write --ignore-path=.eslintignore --loglevel=warn",
"eslint": "eslint --cache --cache-location node_modules/.cache/eslint --fix",
"lint": "eslint --cache --cache-location .eslint/cache --fix",
"lint:all": "yarn eslint . && yarn prettier .",
"lint:staged": "lint-staged --debug"
},
"devDependencies": {
"eslint": "8.29.0",
"eslint-config-ringcentral-typescript": "7.0.3",
"husky": "7.0.4",
"lerna": "4.0.0",
"lint-staged": "11.1.2",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"typescript": "4.5.2"
},
"workspaces": [
"packages/*"
],
"author": "Kirill Konshin",
"repository": {
"type": "git",
"url": "git://github.com/kirill-konshin/next-redux-wrapper.git"
},
"bugs": {
"url": "https://github.com/kirill-konshin/next-redux-wrapper/issues"
},
"homepage": "https://github.com/kirill-konshin/next-redux-wrapper",
"license": "MIT",
"packageManager": "[email protected]",
"resolutions": {
"@types/react": "17.0.37"
}
}