-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "@porscheofficial/cookie-consent-banner-react",
"license": "MIT",
"version": "4.0.3",
"repository": {
"type": "git",
"url": "https://github.com/porscheofficial/cookie-consent-banner",
"directory": "packages/cookie-consent-banner-react"
},
"scripts": {
"build:module": "tsc --outDir ./lib/module --sourceMap",
"build:commonjs": "tsc --module commonjs --outDir ./lib/commonjs --sourceMap",
"build": "rimraf ./lib && yarn build:module && yarn build:commonjs",
"eslint:ci": "eslint src/index.ts --ext .js,.jsx,.tsx,.ts -f stylish",
"eslint:fix": "eslint src/index.ts --fix --ext .js,.jsx,.tsx,.ts -f stylish --quiet",
"prettier:ci": "prettier --check ./src/index.ts",
"prettier:fix": "prettier --write ./src/index.ts",
"test:ci": "yarn prettier:ci && yarn eslint:ci",
"release:prepare": "standard-version"
},
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"index.ts",
"lib/",
"src/",
"README.md",
"LICENSE.md",
"NOTICE.txt"
],
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"standard-version": {
"skip": {
"tag": true,
"commit": true
}
},
"dependencies": {
"@porscheofficial/cookie-consent-banner": "4.0.3"
},
"devDependencies": {
"@porscheofficial/eslint-config-porschedigital-react": "4.0.0",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"eslint": "8.56.0",
"prettier": "3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.5",
"standard-version": "9.5.0",
"typescript": "5.2.2"
}
}