-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.61 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
{
"name": "stellar-forge",
"version": "1.4.1",
"private": true,
"type": "module",
"description": "StellarForge - Stellar Token Deployer",
"scripts": {
"prepare": "husky",
"release": "semantic-release",
"audit:waivers": "node scripts/check-audit-waivers.mjs",
"test:api": "vitest run",
"contract:compile": "cd contracts/token-factory && cargo build --target wasm32v1-none --release",
"frontend:dev": "cd frontend && npm run dev",
"start": "npm run contract:compile && npm run frontend:dev",
"dev:all": "concurrently -n contract,frontend -c cyan,green \"npm run contract:compile\" \"npm run frontend:dev\"",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@actions/io": "^3.0.2",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/busboy": "^1.5.4",
"@vercel/node": "^5.3.6",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.3.3",
"semantic-release": "^25.0.3",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.3",
"workbox-core": "^7.4.1",
"workbox-window": "^7.4.1"
},
"dependencies": {
"@commitlint/is-ignored": "^20.5.0",
"@commitlint/parse": "^20.5.0",
"@commitlint/rules": "^20.5.3",
"@commitlint/types": "^20.5.0",
"@sentry/react": "^10.46.0",
"busboy": "^1.6.0",
"stellar-sdk": "^13.3.0"
}
}