-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
74 lines (74 loc) · 2.41 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "conduit-api",
"version": "1.0.1",
"main": "index.js",
"repository": "[email protected]:fdaciuk/conduit-api.git",
"author": "Fernando Daciuk - @fdaciuk",
"license": "MIT",
"private": true,
"scripts": {
"start": "node dist/src/index.js",
"dev": "yarn docker:down && yarn docker:up && yarn server",
"server": "nodemon --exec sucrase-node src/index.ts",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:destroy": "docker-compose down --volumes --remove-orphans",
"migrate": "prisma migrate dev --name",
"migration": "prisma migrate dev",
"migration:prod": "prisma migrate deploy",
"test": "yarn test:unit && yarn test:integration",
"test:unit": "jest",
"test:watch": "jest --watch",
"test:integration": "jest --passWithNoTests --config jest.config.integration.js",
"test:integration:watch": "yarn test:integration --watch",
"test:api": "APIURL=http://localhost:3333/api ./src/config/tests/postman/run-api-tests.sh",
"lint": "eslint . --ext js,ts",
"lint:fix": "eslint --fix . --ext js,ts",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"prepare": "husky install",
"build": "tsc",
"ci": "yarn lint && yarn type-check && yarn test",
"update-deps": "sucrase-node ./src/config/update-deps.ts"
},
"dependencies": {
"@prisma/client": "3.3.0",
"argon2": "0.28.2",
"cors": "2.8.5",
"dotenv": "10.0.0",
"express": "4.17.1",
"fastify": "3.22.1",
"fastify-cors": "6.0.2",
"fp-ts": "2.11.5",
"io-ts": "2.2.16",
"io-ts-types": "0.5.16",
"jose": "4.1.1",
"module-alias": "2.2.2",
"monocle-ts": "2.3.11",
"newtype-ts": "0.3.4",
"slugify": "1.6.1",
"uuid": "8.3.2"
},
"devDependencies": {
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jest": "27.0.2",
"@types/module-alias": "2.0.1",
"@types/node": "16.11.4",
"@types/uuid": "8.3.1",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"eslint": "8.1.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.2.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.1",
"husky": "7.0.4",
"jest": "27.3.1",
"nodemon": "2.0.14",
"prisma": "3.3.0",
"sucrase": "3.20.3",
"ts-jest": "27.0.7",
"typescript": "4.4.4"
}
}