forked from Servora/StellarCert
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.91 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.91 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
{
"name": "stellarwave",
"version": "1.0.0",
"private": true,
"workspaces": [
"frontend",
"backend",
"shared"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run start:dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"build:contracts": "cd stellar-contracts && cargo build",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "cd backend && npm run start:prod",
"start:frontend": "cd frontend && npm run start",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up",
"docker:down": "docker-compose down",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"test:contracts": "cd stellar-contracts && cargo test",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "cd backend && npm run lint",
"lint:frontend": "cd frontend && npm run lint",
"lint:contracts": "cd stellar-contracts && cargo clippy",
"typecheck": "npm run typecheck:backend",
"typecheck:backend": "cd backend && npm run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"ci:check": "npm run lint && npm run typecheck && npm run test",
"ci:build": "npm run build && npm run build:contracts",
"security:audit": "npm audit && cd backend && npm audit && cd ../frontend && npm audit"
},
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.0.0"
},
"dependencies": {
"@nestjs/bull": "^11.0.4",
"@nestjs/platform-express": "^11.1.12",
"bull": "^4.16.5",
"nodemailer": "^7.0.12"
}
}