-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.38 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.38 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
{
"name": "catalyst-dao",
"version": "1.0.0",
"license": "ISC",
"author": "Aaron Luhning [a.luhning@vitalpoint.ai] | Vital Point AI [https://vitalpoint.ai]",
"private": true,
"scripts": {
"build": "asb",
"build:debug": "asb --target debug",
"test:sandbox": "jest",
"test:testnet": "NEAR_RUNNER_NETWORK=testnet jest",
"test:unit": "asp --nologo",
"build:factory": "asb -d contracts/factory --outDir ./build",
"build:dao": "asb -d contracts/catalystdao --outDir ./build",
"build:registry": "asb -d contracts/registry --outDir ./build",
"build:ft": "asb -d contracts/ft --outDir ./build",
"build:tokenFactory": "asb -d contracts/tokenFactory --outDir ./build",
"build:freeregistry": "asb -d contracts/freeregistry --outDir ./build",
"build:fundingcontract": "asb -d contracts/fundingcontract --outDir ./build"
},
"dependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.4",
"near-cli": "^3.2.0",
"near-sdk-as": "^3.2.3"
},
"devDependencies": {
"jest": "^27.4.5",
"near-runner": "^1.0.0",
"shelljs": "^0.8.4",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.spec.ts"
],
"testPathIgnorePatterns": [
"/assembly/",
"/node_modules/"
]
}
}