-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 909 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 909 Bytes
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
{
"name": "useroutr",
"private": true,
"version": "0.1.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"bootstrap": "npm install",
"dev": "npm run dev --workspace=www",
"build": "npm run build --workspace=www",
"start:api": "npm --workspace=api run start:dev",
"dev:dashboard": "npm run dev --workspace=dashboard",
"dev:checkout": "npm run dev --workspace=checkout"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^7.0.0",
"hardhat": "^3.1.10"
},
"dependencies": {
"@nestjs/common": "^11.0.1",
"@nestjs/core": "^11.0.1",
"@nestjs/jwt": "^11.0.2",
"@nestjs/passport": "^11.0.0",
"@openzeppelin/contracts": "^5.6.1",
"lightningcss-darwin-arm64": "^1.32.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1"
},
"overrides": {
"@nestjs/common": "^11.0.1",
"@nestjs/core": "^11.0.1"
}
}