-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
121 lines (121 loc) · 3.86 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@sebgroup/react-components",
"version": "0.0.0-semantically-released",
"description": "A set of React components based on SEB design library guidelines for mobile and web React applications",
"license": "Apache-2.0",
"main": "./index.js",
"module": "./esm/index.js",
"keywords": [
"react",
"components",
"javascript",
"typescript",
"frontend",
"ui"
],
"workspaces": [
"docs",
"lib"
],
"scripts": {
"test": "npm test --workspace=lib",
"start": "npm start --workspace=docs",
"build:docs": "npm run build --workspace=docs",
"build:lib": "npm run build --workspace=lib",
"build": "npm run build --workspaces",
"format:all": "pretty-quick --write \"{,*/**/}*.{js,jsx, ts, tsx,json}\"",
"format:staged": "pretty-quick --staged --verbose",
"format:check": "pretty-quick --check --verbose",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"commit-chore": "npm run sanitize && npm run generate-indexes && npm run format:staged",
"postgenerate-indexes": "git add package-lock.json lib/src/index.json",
"sanitize": "package-lock-sanitizer",
"generate-indexes": "node ./lib/scripts/indexer.js",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebgroup/react-components.git"
},
"bugs": {
"url": "https://github.com/sebgroup/react-components/issues"
},
"homepage": "https://sebgroup.github.io/react-components",
"dependencies": {
"@sebgroup/bootstrap": "^6.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^4.6.3"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/changelog": "^6.0.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.1.1",
"@types/node": "^17.0.23",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"autoprefixer": "^10.4.4",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.33.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^4.3.6",
"jest-date-mock": "^1.0.8",
"jest-fetch-mock": "^3.0.3",
"ncp": "^2.0.0",
"package-lock-sanitizer": "^1.0.1",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"sass": "^1.50.0",
"semantic-release": "^19.0.2",
"tslib": "^2.3.1"
},
"config": {
"base": "/react-components",
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint --edit",
"pre-commit": "npm run commit-chore"
}
},
"release": {
"pkgRoot": "lib/dist",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=15.0.0",
"npm": ">=7.0.0"
},
"browserslist": [
"cover 99.5%"
]
}