-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 780 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 780 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
{
"name": "stock-proxy",
"version": "1.0.0",
"scripts": {
"start:mock": "nodemon src/exampleServer.js",
"start:proxy": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"typecheck": "tsc --pretty",
"lint": "eslint --cache --ext .ts,.js",
"fix": "bun lint --fix"
},
"dependencies": {
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/node": "^20.7.2",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"dotenv": "^16.3.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"git-format-staged": "^3.0.0",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1"
}
}