-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
47
48
49
50
51
52
53
{
"name": "metal-tracker",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node .",
"build": "rm -fr dist && tsc --project tsconfig.build.json && cp -r src/migrations dist",
"dev": "tsx -r dotenv/config --watch --inspect src/index.ts | pino-pretty",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . && prettier . --check",
"lint:fix": "eslint --fix . && prettier . --write",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@aws-sdk/client-sns": "^3.624.0",
"better-sqlite3": "^9.4.3",
"node-fetch": "^3.3.2",
"pino": "^8.18.0",
"string-strip-html": "^13.4.6",
"xml2js": "^0.6.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/better-sqlite3": "^7.6.9",
"@types/node": "^20.11.25",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^1.3.0",
"aws-sdk-client-mock": "^4.0.1",
"dotenv": "^16.4.2",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-vitest": "^0.3.22",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"nock": "^13.5.3",
"pino-pretty": "^10.3.1",
"prettier": "3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}