-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 903 Bytes
/
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
{
"name": "cb-cookie-manager",
"version": "1.0.0",
"description": "Cookie Manager",
"author": "Sneh Koul <sneh.koul@coinbase.com>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "yarn workspaces run lint && yarn workspaces run build",
"lint": "yarn workspaces run lint",
"test": "yarn workspaces run test"
},
"workspaces": [
"packages/cookie-manager",
"packages/cookie-banner",
"apps/example"
],
"devDependencies": {
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}