-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "articles",
"version": "1.0.0",
"license": "MIT",
"author": "Michael Arnaldi",
"scripts": {
"start": "node -r ts-node/register src/index.ts",
"test": "jest",
"migration:create": "node-pg-migrate create",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@effect-ts/core": "^0.7.57",
"@effect-ts/jest": "^0.1.3",
"@effect-ts/monocle": "^0.6.58",
"@effect-ts/morphic": "^0.7.28",
"@effect-ts/system": "^0.5.42",
"@types/jest": "^26.0.10",
"@types/node": "^14.11.8",
"@types/pg": "^7.14.5",
"@typescript-eslint/eslint-plugin": "^4.0.0-alpha.12",
"@typescript-eslint/parser": "^4.0.0-alpha.12",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"fast-check": "^2.4.0",
"jest": "^26.4.1",
"node-pg-migrate": "^5.8.0",
"pg": "^8.4.1",
"prettier": "^2.1.2",
"reflect-metadata": "^0.1.13",
"testcontainers": "^4.3.0",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.1-rc"
}
}