This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
67 lines (67 loc) · 2.5 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
{
"name": "redux-eggs-mono",
"private": true,
"license": "MIT",
"author": "Fosty Fost",
"repository": {
"type": "git",
"url": "git://github.com/fostyfost/redux-eggs.git"
},
"bugs": {
"url": "https://github.com/fostyfost/redux-eggs/issues"
},
"homepage": "https://github.com/fostyfost/redux-eggs",
"scripts": {
"build": "lerna run --stream --concurrency 1 --sort build",
"build:size": "lerna run --stream --concurrency 1 --sort build:size",
"clean": "lerna run --parallel clean",
"clean:dist": "lerna run --parallel clean:dist",
"clean:coverage": "lerna run --parallel clean:coverage",
"clean:file-size-cache": "lerna run --parallel clean:file-size-cache",
"lint": "lerna run --parallel lint",
"type-check": "lerna run --parallel type-check",
"test": "lerna run --parallel test",
"test:coverage": "lerna run --parallel test:coverage",
"test:examples:next": "yarn workspace @redux-eggs-example/next run test",
"test:examples:next-gip": "yarn workspace @redux-eggs-example/next-gip run test",
"test:examples:next-rtk": "yarn workspace @redux-eggs-example/next-rtk run test",
"test:examples:react": "yarn workspace @redux-eggs-example/react run test",
"test:examples": "run-p \"test:examples:*\"",
"build:examples:next": "yarn workspace @redux-eggs-example/next run build",
"build:examples:next-gip": "yarn workspace @redux-eggs-example/next-gip run build",
"build:examples:next-rtk": "yarn workspace @redux-eggs-example/next-rtk run build",
"build:examples:react": "yarn workspace @redux-eggs-example/react run build",
"build:examples": "run-p \"build:examples:*\"",
"prepublish": "lerna run prepublish",
"postinstall": "husky install"
},
"engines": {
"node": ">=16",
"yarn": ">=3"
},
"packageManager": "yarn@3.5.1",
"workspaces": [
"examples/*",
"internal/*",
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "17.6.3",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unicorn": "47.0.0",
"husky": "8.0.3",
"lerna": "5.5.4",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"typescript": "4.6.4"
}
}