forked from crackedstudio/tikka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.68 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
{
"name": "tikka",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"client",
"sdk",
"backend",
"indexer",
"oracle"
],
"scripts": {
"install:all": "npm install --prefix client && npm install --prefix sdk && npm install --prefix backend && npm install --prefix indexer && npm install --prefix oracle",
"build": "npm run build --prefix client && npm run build --prefix sdk && npm run build --prefix backend && npm run build --prefix indexer && npm run build --prefix oracle",
"build:client": "npm run build --prefix client",
"build:sdk": "npm run build --prefix sdk",
"build:backend": "npm run build --prefix backend",
"build:indexer": "npm run build --prefix indexer",
"build:oracle": "npm run build --prefix oracle",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"check:dependencies": "node scripts/check-dependencies.js",
"db:check-drift": "npx tsx scripts/check-schema-drift.ts",
"prepare": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.0",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/react-router-dom": "^5.3.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10"
},
"dependencies": {
"@pinata/sdk": "^2.1.0",
"react-router-dom": "^7.13.2"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531"
}