-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 926 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
36
{
"name": "bff",
"version": "1.0.0",
"description": "Budget freely forever",
"main": "index.js",
"scripts": {
"clean": "rimraf built",
"start": "npm-run-all clean build run:app",
"test": "jest",
"run:app": "node ./built/main.js",
"build": "npx tsc --build tsconfig.json",
"watch:build": "npx tsc --build tsconfig.json --watch",
"watch:app": "npx nodemon ./built/main.js --watch ./built"
},
"author": "",
"license": "ISC",
"dependencies": {
"async-mutex": "^0.3.2",
"dayjs": "^1.10.7",
"fs-extra": "^10.0.0",
"nanotimer": "^0.3.15",
"papaparse": "^5.3.1",
"path": "^0.12.7",
"sprintf-js": "^1.1.2",
"timers-browserify": "^2.0.12"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.2.5",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
}
}