forked from Nova-reward/Nova-Rewards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.19 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
{
"name": "nova-rewards",
"version": "1.0.0",
"description": "NovaRewards — blockchain-powered loyalty rewards on Stellar",
"private": true,
"workspaces": [
"backend",
"frontend",
"blockchain"
],
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"eslint": "^8.57.0"
},
"scripts": {
"test": "npm test -w backend && npm test -w frontend",
"test:backend": "npm test -w backend",
"test:frontend": "npm test -w frontend",
"lint": "npm run lint -w backend && npm run lint -w frontend",
"lint:fix": "npm run lint:fix -w backend && npm run lint:fix -w frontend",
"format": "npm run format -w frontend",
"format:check": "npm run format:check -w frontend",
"build": "npm run build -w frontend",
"setup:new": "node scripts/setup.js",
"setup": "node scripts/setup.js --use-env",
"migrate": "node database/migrate.js",
"migrate:rollback": "node database/migrate.js --rollback",
"migrate:status": "node database/migrate.js --status",
"reset-testnet": "node scripts/reset-testnet.js"
},
"dependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
}
}