-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 782 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 782 Bytes
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
{
"name": "custom_stacks_application",
"version": "1.0.0",
"description": "",
"main": "index.js",
"devDependencies": {
"@types/node": "^18.11.12",
"prettier": "2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"scripts": {
"test": "ts-node ./script/index.ts",
"triggerAnchorBlockTests": "ts-node ./script/index.ts triggerAnchorBlockTests",
"triggerDeployTestContract": "ts-node ./script/index.ts triggerDeployTestContract",
"api404Test": "ts-node ./script/index.ts api404Test",
"stx": "stx"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@stacks/cli": "^3.5.0",
"axios": "^1.2.1",
"dotenv": "^16.0.3"
}
}