-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 990 Bytes
/
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
33
{
"name": "eventon",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "blueprint run",
"build": "rm -rf ./build/* && blueprint build --all && cp ./build/UniversalRouter/*.ts packages/sdk/compiled/",
"test": "DOTENV_CONFIG_PATH=.env.test jest",
"generate": "tsx gen/generateMnemonic.ts && node gen/generateMnemonic.js"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@ton-community/blueprint": "^0.12.0",
"@ton-community/sandbox": "^0.11.0",
"@ton-community/test-utils": "^0.3.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.2.5",
"jest": "^29.5.0",
"prettier": "^2.8.6",
"ton": "~13.6.0",
"ton-core": "^0.51.0",
"ton-crypto": "^3.2.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsx": "^3.12.9",
"typescript": "^4.9.5"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}