-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.42 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "equitify-platform",
"version": "0.0.1",
"description": "Equitify Platform monorepo",
"private": true,
"type": "module",
"license": "MIT",
"author": "RedDuck Software <sales@redduck.io>",
"workspaces": {
"packages": [
"contracts",
"integration-tests",
"frontend"
],
"nohoist": [
"frontend/typescript",
"frontend/@types/node",
"frontend/vite",
"frontend/vite/**",
"frontend/@vitejs/**",
"frontend/rollup",
"frontend/rollup/**"
]
},
"engines": {
"node": ">=20.19"
},
"scripts": {
"prepare": "husky install",
"dev": "yarn workspace frontend dev",
"start": "yarn workspace frontend dev",
"preview": "yarn workspace frontend preview",
"deploy": "yarn workspace contracts deploy",
"build": "yarn build:contracts && yarn build:web",
"build:web": "yarn workspace frontend build",
"build:contracts": "run-s build:contract:*",
"build:contract:launchpad": "near-sdk-js build ./contracts/src/launchpad.ts build/launchpad.wasm",
"build:contract:launchpadFactory": "near-sdk-js build ./contracts/src/launchpadFactory.ts build/launchpad_factory.wasm",
"build:contract:nft": "near-sdk-js build ./contracts/src/nft.ts build/nft.wasm",
"build:contract:ft": "near-sdk-js build ./contracts/src/ft.ts build/ft.wasm",
"build:contract:platform": "near-sdk-js build ./contracts/src/equitifyPlatform.ts build/equitify_platform.wasm",
"test": "yarn test:integration",
"test:integration": "yarn build:contracts && yarn workspace ava-testing test",
"test:integration:noBuild": "yarn workspace ava-testing test",
"typecheck": "yarn workspace frontend typecheck",
"lint": "yarn workspace frontend lint",
"format": "yarn workspace frontend format",
"codestyle": "yarn workspace frontend codestyle",
"codestyle:fix": "yarn workspace frontend codestyle:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RedDuckTeam/equitify-platform.git"
},
"bugs": {
"url": "https://github.com/RedDuckTeam/equitify-platform/issues"
},
"homepage": "https://github.com/RedDuckTeam/equitify-platform#readme",
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.1.0",
"@types/node": "^18.19.0",
"husky": "^8.0.1",
"near-cli": "^3.3.0",
"near-sdk-js": "0.6.0-0",
"npm-run-all": "^4.1.5",
"typescript": "^4.9.5"
}
}