forked from kirill-konshin/next-redux-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.53 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
{
"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",
"eslint": "eslint --cache --cache-location node_modules/.cache/eslint --fix",
"lint": "eslint --cache --cache-location .eslint/cache --fix",
"lint:all": "yarn prettier . && yarn eslint .",
"lint:staged": "lint-staged --debug"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-ringcentral-typescript": "0.0.0-master.212.1",
"husky": "7.0.2",
"lerna": "4.0.0",
"lint-staged": "11.1.2",
"prettier": "2.4.0",
"rimraf": "3.0.2",
"typescript": "4.4.3"
},
"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]"
}