-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.17 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
{
"name": "@flair/starter-boilerplate",
"version": "1.0.0",
"description": "Indexing boilerplate components and scripts",
"main": "manifest.yml",
"repository": "[email protected]:flair-sdk/starter-boilerplate.git",
"author": "[email protected]",
"license": "MIT",
"private": true,
"scripts": {
"format": "rome format . --write",
"lint": "rome check .",
"lint:fix": "pnpm lint --apply",
"generate": "find ./ -type f -name '*.mustache' -exec sh -c 'mustache ./config.json \"$1\" > \"${1%.mustache}\"' _ {} \\;",
"generate:windows": "Get-ChildItem -Recurse -Filter '*.mustache' | ForEach-Object { mustache ./config.json $_.FullName > $_.FullName.Replace('.mustache', '') }",
"generate-and-deploy": "pnpm run generate && flair deploy",
"generate-and-deploy:windows": "pnpm run generate:windows && flair deploy"
},
"devDependencies": {
"@types/node": "^20.3.2",
"flair-cli": "^1.45.1",
"mustache": "^4.2.0",
"prettier": "^3.0.3",
"rome": "^12.1.3",
"typescript": "^5.1.6"
},
"dependencies": {
"@flair-sdk/solution-basic-events-txs": "^0.1.16",
"@flair-sdk/solution-database-mongodb": "^0.3.2",
"flair-sdk": "^1.13.2"
}
}