-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 929 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
{
"name": "anytrace",
"version": "0.1.0",
"description": "Microservice tracing tool with shell script execution capabilities",
"main": "dist/server/index.js",
"scripts": {
"start": "node dist/server/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/server/index.ts",
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3",
"js-yaml": "^4.1.0",
"@types/js-yaml": "^4.0.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"ts-node-dev": "^2.0.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.11"
}
}