-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 956 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 956 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
28
29
30
31
32
33
34
{
"name": "monzo-rules",
"version": "1.0.0",
"description": "Monzo API client that allows programming rules and macros with triggers",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development nodemon index.js",
"test": "yarn node --experimental-vm-modules $(yarn bin jest) --watchAll --silent=false --collectCoverage"
},
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"axios": "^0.26.1",
"axios-retry": "^3.2.4",
"chalk": "^5.0.1",
"config": "^3.3.7",
"express": "^4.17.3",
"mongoose": "^6.2.9",
"object-hash": "^3.0.0",
"qs": "^6.10.3",
"sequelize": "^6.17.0",
"sqlite3": "npm:@vscode/sqlite3@^5.0.7"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-react": "^7.29.4",
"jest": "^27.5.1",
"jest-esm-transformer": "^1.0.0",
"supertest": "^6.2.2"
}
}