-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"name": "priority-message-system",
"version": "0.0.1",
"description": "An example of a priority-message system",
"author": "Gregory P. Pabian",
"license": "MIT",
"scripts": {
"lint": "yarn eslint ./src/**/*.ts tests/**/*.ts",
"lint:fix": "yarn eslint ./src/**/*.ts tests/**/*.ts --fix",
"test:unit": "mocha",
"test:coverage": "nyc mocha"
},
"dependencies": {
"fp-ts": "2.10.5",
"fp-ts-contrib": "0.1.23",
"io-ts": "2.2.16",
"io-ts-types": "0.5.16",
"monocle-ts": "2.3.9",
"newtype-ts": "0.3.4",
"nodemon": "2.0.7",
"pino": "6.11.3",
"pino-pretty": "4.8.0",
"ts-node": "9.1.1",
"typescript": "4.2.4",
"uuid": "8.3.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/chai": "4.2.18",
"@types/mocha": "8.2.2",
"@types/node": "15.0.2",
"@types/pino": "6.3.8",
"@types/uuid": "8.3.0",
"@types/validator": "13.1.3",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"chai": "4.3.4",
"eslint": "7.26.0",
"mocha": "8.4.0",
"nyc": "15.1.0",
"source-map-support": "0.5.19",
"ts-essentials": "7.0.1"
}
}