-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 861 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
34
35
{
"name": "itrade-to-wave",
"version": "1.0.0",
"description": "Script to automate the import of stock transactions from Scotia iTrade to Wave Accounting",
"main": "index.ts",
"scripts": {
"itest": "jest --testMatch=**/*.itest.ts",
"test": "jest --testMatch=**/*.test.ts --watchAll",
"start": "ts-node src/index.ts"
},
"keywords": [
"itrade",
"wave",
"transactions",
"import"
],
"author": "Philip Davis",
"license": "UNLICENSED",
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.170",
"@types/moment": "^2.13.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^4.8.3"
},
"dependencies": {
"dotenv": "^10.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"node-fetch": "^3.3.1",
"puppeteer": "^18.2.1",
"ts-node": "^10.9.1"
}
}