-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "actual-relay",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "babel src -d lib",
"watch": "nodemon --exec 'yarn build && yarn serve'",
"serve": "node lib/index.js",
"test": "jest",
"integration-test": "run-s test kill-server",
"kill-server": "node lib/kill-server.js",
"serve-with-coverage": "nyc yarn serve",
"coverage-report": "nyc report",
"coverage": "npm-run-all --parallel integration-test serve-with-coverage --serial coverage-report"
},
"dependencies": {
"@actual-app/api": "^1.1.3",
"express": "^4.17.1",
"express-openapi-validator": "^4.13.4"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/register": "^7.16.0",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"axios": "^0.24.0",
"babel-jest": "^27.4.4",
"babel-node": "^0.0.1-security",
"babel-plugin-istanbul": "^6.1.1",
"jest": "^27.4.3",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"shell-exec": "^1.0.2"
}
}