-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "abare-platform",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"clean": "turbo clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "jest",
"typecheck": "turbo typecheck",
"release": "turbo build && changeset publish"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@changesets/cli": "^2.27.12",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "20.11.16",
"babel-jest": "^29.7.0",
"eslint": "8.56.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"openapi-typescript-codegen": "^0.29.0",
"prettier": "3.2.5",
"turbo": "1.11.3",
"typescript": "5.3.3"
},
"packageManager": "[email protected]",
"dependencies": {
"axios": "^1.7.9",
"react": "18.2.0"
}
}