-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 3.21 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
{
"author": "Transcend Inc.",
"name": "@transcend-io/consent-manager-ui",
"description": "Transcend Consent Manager reference consent UI",
"repository": {
"type": "git",
"url": "https://github.com/transcend-io/consent-manager-ui.git"
},
"homepage": "https://github.com/transcend-io/consent-manager-ui",
"version": "4.22.4",
"license": "MIT",
"main": "build/ui",
"files": [
"src/**/*",
"build/**/*",
"tsconfig.json",
"package.json"
],
"keywords": [
"transcend",
"consent",
"manager",
"privacy"
],
"dependencies": {
"@transcend-io/internationalization": "^1.6.0",
"@transcend-io/logger": "^1.1.0",
"preact": "10.5.14",
"react-intl": "=6.2.5",
"tslib": "^2.4.1"
},
"scripts": {
"update:sdks": "yarn sdks base",
"update:deps": "yarn upgrade-interactive && yarn update:sdks",
"build": "ts-node --transpile-only ./build.ts && cp -r ./src/translations ./build/translations && cp ./src/cm.css ./build/",
"tsc:build": "yarn pnpify tsc --build",
"clean": "yarn pnpify tsc --build --clean",
"lint": "yarn pnpify eslint src --ext .ts,.tsx",
"start": "rm -rf build/ && yarn build && concurrently 'WATCH=true yarn build' 'yarn live-server --host=localhost --entry-file=./index.html'",
"start:https": "rm -rf build/ && yarn build && concurrently 'WATCH=true yarn build' 'yarn live-server --host=yo.com --https=../main/ssl/index.js --entry-file=./index.html'",
"build:playground": "rm -rf build/ && yarn build && cp ./src/playground/playground.css ./build/",
"playground": "yarn build:playground && concurrently 'WATCH=true yarn build' 'yarn live-server --host=localhost --open=./src/playground/index.html --mount=/src/playground/:./src/'",
"prepublish": "yarn build",
"test": "yarn jest",
"test:update": "yarn jest -u",
"test:watch": "yarn jest --watch"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@monaco-editor/react": "^4.4.5",
"@prettier/sync": "^0.5.2",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/preact": "^3.2.4",
"@transcend-io/airgap.js-types": "^12.3.0",
"@transcend-io/type-utils": "^1.5.0",
"@types/jest": "^29.5.12",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@yarnpkg/esbuild-plugin-pnp": "^2.0.1",
"@yarnpkg/pnpify": "^3.1.1",
"@yarnpkg/sdks": "^2.6.0",
"concurrently": "^7.3.0",
"depcheck": "^1.4.3",
"esbuild": "^0.14.23",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-preact": "^1.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsdoc": "^37.9.4",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"live-server": "^1.2.2",
"monaco-editor": "^0.34.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"ts-node": "^10.5.0",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]"
}