-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 920 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 920 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
30
31
32
33
34
{
"name": "nodebal",
"version": "0.2.6",
"main": "build/index.js",
"files": [
"build"
],
"repository": "https://github.com/felps-dev/nodebal",
"author": "Felipe Correa <eu@felps.dev>",
"license": "MIT",
"dependencies": {
"@types/node": "^20.11.24",
"serialport": "^12.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "latest",
"rimraf": "latest",
"typescript": "*"
},
"scripts": {
"dev": "nodemon",
"build": "rimraf ./build && tsc --project ./tsconfig.json",
"start": "npm run build && node build/index.js",
"prepare": "npm run build",
"prepack": "npm run build",
"postinstall": "npm run build"
}
}