-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.72 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.72 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@tempmee/node-metrics-lib",
"version": "1.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/TempMee/node-metrics-lib.git"
},
"exports": {
".": {
"import": "./dist-esm/bundle.min.mjs",
"require": "./dist-cjs/bundle.min.cjs"
}
},
"main": "dist-cjs/bundle.min.cjs",
"module": "dist-esm/bundle.min.mjs",
"types": "dist-esm/index.d.ts",
"files": [
"dist-cjs",
"dist-esm"
],
"author": "James Trotter <james.trotter@tempmee.com>",
"license": "MIT",
"scripts": {
"build": "rollup --config",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"test:debug-watch": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch",
"test:coverage": "jest --coverage",
"prepare": "husky",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\""
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/rollup-plugin-peer-deps-external": "^2",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"dd-trace": "^5.12.0",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-levitate": "^4.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-ordered-imports": "^0.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^49.0.0",
"express": "^4.19.2",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"prom-client": "^15.1.2",
"rollup": "^4.17.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.4.5",
"supertest": "^7.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"graphql": "^16.8.1"
},
"peerDependencies": {
"dd-trace": "^5.12.0",
"express": "^4.17.1",
"prom-client": "^15.0.0"
},
"lint-staged": {
"*.[j|t]s": "eslint --cache --fix"
},
"packageManager": "yarn@4.0.1",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}