-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.3 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
46
{
"name": "ledtower-cloudwatch",
"description": "CloudWatch LED Tower",
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"start": "concurrently npm:watch-*",
"watch-serve": "ts-node-dev --files src/index.ts",
"preserve": "npm run build",
"serve": "node ./dist/index.js",
"prebuild": "del dist/",
"build": "tsc",
"postbuild": "cpy 'src/**/*.*' '!**/*.ts' dist --no-overwrite --parents",
"test": "jest",
"lint": "eslint ./src"
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "3.400.0",
"@types/luxon": "3.3.2",
"luxon": "3.4.2",
"serialport": "12.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/jest": "29.5.3",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"concurrently": "8.2.0",
"cpy-cli": "5.0.0",
"del-cli": "5.0.0",
"eslint": "8.45.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-sonarjs": "0.19.0",
"eslint-plugin-unicorn": "48.0.0",
"jest": "29.6.1",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "5.1.6"
}
}