-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.26 KB
/
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
34
35
36
37
38
39
40
41
42
{
"name": "stablecoin-aptos",
"version": "1.0.0",
"description": "Circle's Stablecoin Smart Contracts on Aptos blockchain",
"repository": {
"type": "git",
"url": "git+https://github.com/circlefin/stablecoin-aptos.git"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"scripts": "ts-node scripts/typescript/index.ts",
"test": "env NODE_ENV=TESTING TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register -r dotenv/config -t 300000 'test/**/*.test.ts'",
"type-check": "tsc --noEmit",
"postinstall": "husky"
},
"license": "Apache-2.0",
"homepage": "https://github.com/circlefin/stablecoin-aptos#readme",
"devDependencies": {
"@aptos-labs/ts-sdk": "1.29.1",
"@types/mocha": "10.0.6",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.17.0",
"commander": "12.1.0",
"dotenv": "16.4.5",
"eslint": "9.13.0",
"husky": "9.1.6",
"mocha": "10.7.3",
"prettier": "3.3.3",
"prettier-eslint": "16.3.0",
"sinon": "19.0.2",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"yup": "1.4.0"
},
"engines": {
"node": "20.14.0",
"yarn": "1.x.x"
}
}