-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.37 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
43
44
45
46
47
48
49
50
{
"name": "stacks-transaction-sponsor",
"version": "0.1.0",
"description": "Stacks Transaction Sponsor",
"main": "index.js",
"scripts": {
"build": "tsc --project ./",
"dev": "nodemon src/index.ts",
"start": "node dist/src/index.js",
"test": "jest",
"test:watch": "jest --watch --coverage=false"
},
"author": "",
"license": "MIT",
"dependencies": {
"@stacks/common": "^6.0.0",
"@stacks/network": "^6.0.0",
"@stacks/transactions": "^6.0.0",
"@stacks/wallet-sdk": "^6.0.0",
"@types/express": "^4.17.13",
"axios": "^0.21.4",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"node-cache": "^5.1.2",
"pino": "^8.14.1",
"pino-pretty": "^10.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/jest": "^29.5.3",
"@types/node": "^12.12.6",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.6.1",
"nock": "^13.2.0",
"nodemon": "^2.0.15",
"prettier": "^2.8.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.8.1",
"typescript": "^4.2.3"
}
}