forked from sckv/almeriajs-ddd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "base-repo",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:sckv/almeriajs-ddd.git",
"author": "Konstantin Knyazev <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"format": "eslint . --fix --ext ts --ignore-pattern **/node_modules/**"
},
"workspaces": [
"./packages/accounting",
"./packages/graphql",
"./packages/billing",
"./packages/ordering",
"./packages/products"
],
"dependencies": {
"@types/compression": "^1.7.0",
"@types/express": "^4.17.6",
"@types/morgan": "^1.9.0",
"@types/node": "^13.13.2",
"@types/uuid": "^7.0.3",
"@types/validator": "^13.0.0",
"apollo-datasource-rest": "^0.8.1",
"apollo-server": "^2.12.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"got": "^11.0.2",
"graphql": "^15.0.0",
"graphql-compose": "^7.14.4",
"knex": "^0.21.0",
"morgan": "^1.10.0",
"pg": "^8.0.3",
"ts-nats": "^1.2.12",
"ts-node-dev": "^1.0.0-pre.44",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.8.3",
"uuid": "^7.0.3",
"validator": "^13.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"prettier": "^2.0.5"
}
}