-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "paybranch",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start:dev": "npx nodemon",
"start": "npm run build && node build/index.js --input=./test-data.json",
"build": "rimraf ./build && tsc",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint ./src --ext .ts",
"lint:fix": "eslint --fix ./src --ext .ts",
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/minimist": "^1.2.5",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"minimist": "^1.2.8"
}
}