-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.31 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 4.31 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "react-hibernate-workspace",
"private": true,
"version": "0.3.0",
"description": "Root workspace for React-Hibernate",
"license": "MIT",
"homepage": "https://github.com/spautz/react-hibernate#readme",
"bugs": "https://github.com/spautz/react-hibernate/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/spautz/react-hibernate.git"
},
"author": {
"name": "Steven Pautz",
"url": "http://stevenpautz.com/"
},
"engines": {
"node": "^12 || ^14 || ^15 || ^16 || ^17",
"yarn": "1.*"
},
"scripts": {
"____ LIFECYCLE HOOKS _______________________________________________": "",
"prepare": "husky install && yon run packages:prepare",
"pretest": "yon run test:clean",
"____ INTEGRATION ___________________________________________________": "",
"clean": "yon run storybook:clean && yon run test:clean && rimraf ./node_modules/.cache && yon run packages:clean",
"dev": "yon run format && yon run types && yon run lint",
"dev:readonly": "yon run format:verify && yon run types && yon run lint",
"all": "yon run bootstrap && yon run dev && yon run test:coverage && yon run build-storybook",
"all:readonly": "yon run dev:readonly && yon run test:coverage",
"____ BATCH COMMANDS FOR PACKAGES ___________________________________": "",
"packages:prepare": "lerna run prepare",
"packages:clean": "lerna run clean",
"packages:test": "lerna run test:coverage",
"packages:dev": "lerna run dev",
"packages:dev:readonly": "lerna run dev:readonly",
"packages:all": "lerna run all",
"packages:all:readonly": "lerna run all:readonly",
"packages:build": "lerna run build",
"packages:release:changelog": "lerna run release:changelog -- ",
"____ INDIVIDUAL COMMANDS ___________________________________________": "",
"bootstrap": "lerna bootstrap",
"format": "prettier --write .",
"format:verify": "prettier --list-different .",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix --max-warnings 0",
"lint-staged": "lint-staged",
"release:version": "yarn lerna version --no-changelog --no-push --no-git-tag-version ",
"release:tag": "cross-env HUSKY_BYPASS=true yarn lerna version --no-changelog --no-push --sign-git-commit --amend ",
"release:postpublish": "standard-version --commit-all --sign --skip.changelog --release-as ",
"storybook": "start-storybook -p 6006",
"storybook:clean": "rimraf ./storybook-static",
"build-storybook": "build-storybook",
"build-storybook:node17": "cross-env NODE_OPTIONS=--openssl-legacy-provider build-storybook",
"test": "yon run test:coverage",
"test:clean": "rimraf ./coverage",
"test:coverage": "jest --coverage",
"test:nowatch": "jest",
"test:watch": "jest --watch",
"test:watchcoverage": "jest --watchAll --coverage",
"types": "tsc --p tsconfig.json --noEmit"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@storybook/addon-actions": "6.3.12",
"@storybook/addon-essentials": "6.3.12",
"@storybook/addon-links": "6.3.12",
"@storybook/react": "6.3.12",
"@testing-library/jest-dom": "5.15.1",
"@testing-library/react": "12.1.2",
"@tsconfig/recommended": "1.0.1",
"@types/react": "17.0.36",
"@types/react-dom": "17.0.11",
"@types/react-is": "17.0.3",
"@types/react-redux": "7.1.20",
"@types/react-router": "5.1.17",
"@types/react-router-dom": "5.3.2",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"babel-loader": "8.2.3",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"downlevel-dts": "0.7.0",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "4.3.0",
"gh-pages": "5.0.0",
"husky": "7.0.4",
"jest": "27.3.1",
"lerna": "4.0.0",
"lint-staged": "11.2.6",
"prettier": "2.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"standard-version": "9.3.2",
"ts-jest": "27.0.7",
"typescript": "4.5.2",
"yarn-or-npm": "3.0.1"
},
"lint-staged": {
"**/*.{css,html,js,jsx,json,less,md,scss,ts,tsx}": [
"prettier --write"
]
},
"standard-version": {
"scripts": {
"postchangelog": "yon run format"
}
},
"workspaces": [
"packages/*"
]
}