-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.73 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
{
"name": "consent-manager-monorepo",
"private": true,
"author": {
"name": "hashbite",
"email": "[email protected]",
"url": "https://hashbite.net/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hashbite/consent-manager"
},
"scripts": {
"lerna": "lerna",
"start": "lerna run start --stream --parallel",
"test": "lerna run test --",
"lint": "lerna run lint -- --fix",
"build": "lerna run build",
"format": "prettier --write packages/**/src",
"cleanup": "lerna exec -- rm -rf ./dist",
"prepublish": "yarn run cleanup && lerna run prepublish --scope='@consent-manager/core' && lerna run prepublish --ignore='@consent-manager/core'",
"start:app": "yarn --cwd example && yarn --cwd example start",
"cypress": "cypress run",
"cypress:open": "cypress open",
"changeset": "changeset",
"release": "changeset publish",
"version:canary": "changeset version --snapshot canary",
"release:canary": "changeset publish --tag canary"
},
"devDependencies": {
"@babel/helper-explode-assignable-expression": "^7.18.6",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.8",
"@types/react": "18.2.58",
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"cypress": "13.14.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"lerna": "4.0.0",
"prettier": "^3.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"tsdx": "0.14.1",
"typescript": "^5.3.3",
"typescript-plugin-css-modules": "^3.4.0"
},
"workspaces": [
"packages/*",
"example"
],
"dependencies": {}
}