-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1017 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
37
38
39
40
41
42
43
{
"name": "fractal",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"test": "npm run lint && NODE_ENV=test jest --detectOpenHandles",
"build": "rimraf ./build && tsc",
"start:dev": "npx nodemon",
"start": "npm run build && node build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"mqtt": "^4.3.7",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.1.1",
"@types/sinon": "^10.0.14",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"nodemon": "^2.0.22",
"rimraf": "^5.0.0",
"sinon": "^15.0.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"nodemon": {
"watch": [
"src"
],
"ext": ".ts,.js",
"ignore": [],
"exec": "npx ts-node ./src/index.ts"
}
}