-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.03 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.03 KB
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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "husky install",
"clean": "turbo run clean",
"compile": "turbo run compile",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"storybook": "turbo run storybook",
"changeset": "changeset",
"version": "changeset version && npm i",
"tag": "changeset tag"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/lodash": "^4.17.20",
"husky": "^8.0.3",
"turbo": "^2.5.8"
},
"dependencies": {
"crypto-js": "^4.2.0",
"elliptic": "^6.6.1",
"rapidoc": "^9.3.8"
},
"packageManager": "npm@9.8.1",
"name": "developer-portal",
"overrides": {
"next": {
"ajv": "^8.17.1"
},
"eslint": {
"ajv": "^8.18.0"
},
"table": {
"ajv": "^8.18.0"
},
"optionator": {
"ajv": "^8.18.0"
},
"@eslint/eslintrc": {
"ajv": "^8.18.0"
},
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}