forked from daviromao/autoflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
41
42
43
44
45
{
"name": "central",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"start:dev": "nodemon --exec ts-node src/simulator/devices.ts",
"setup:simulator": "npx ts-node src/simulator/setup.ts",
"test": "npx jest --runInBand --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"babel-jest": "^29.7.0",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"prettier": "^3.3.2",
"supertest": "^7.0.0",
"testpilot": "^0.4.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"cliui": "^8.0.1",
"express": "^4.19.2",
"get-port": "^7.1.0",
"jest-cli": "^29.7.0",
"string-width": "^7.1.0",
"userland": "^0.4.1"
}
}