forked from martonlederer/arconnect-tx-counter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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
51
52
53
{
"name": "clabs-projects-tx-puller",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "npm run prettier && npm run test",
"prettier": "prettier --write .",
"test": "jest tests/",
"build": "rm -rf ./dist && rollup -c && dts-bundle-generator src/index.ts -o dist/index.d.ts --no-banner",
"heroku-postbuild": "rm -rf ./dist && rollup -c && dts-bundle-generator src/index.ts -o dist/index.d.ts --no-banner"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.ts"
]
},
"keywords": [],
"author": "Marton Lederer <marton@lederer.hu>, Lorimer Jenkins <lorimerjenkins1@gmail.com>",
"license": "MIT",
"dependencies": {
"ar-gql": "^1.2.4",
"dotenv": "^16.3.1",
"json2csv": "^6.0.0-alpha.2",
"nodemailer": "^6.9.7",
"prettier": "^3.1.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/json2csv": "^5.0.7",
"@types/node": "^20.10.0",
"@types/nodemailer": "^6.4.14",
"ts-jest": "^29.1.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/body-parser": "^1.19.4",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/multer": "^1.4.9",
"dts-bundle-generator": "^8.1.2",
"rollup": "^4.3.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}