-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2 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
{
"name": "formations",
"version": "1.0.0",
"license": "MIT",
"author": "Simon Renoult <[email protected]>",
"scripts": {
"build": "tsc --build tsconfig.json",
"prestart": "npm run build",
"start": "node dist/bin/start.js",
"start:watch": "nodemon src/bin/start.ts",
"lint": "eslint . --ext .ts",
"test:all": "npm run test && npm run test:cucumber",
"test": "mocha --exit -r ts-node/register --extension ts --spec src/**/*.test.ts",
"test:watch": "mocha -r ts-node/register --extension ts --spec src/**/*.test.ts --watch --watch-extensions ts",
"test:cucumber": "cucumber-js features/*.feature -r features/**/world.ts -r features/**/steps.ts --require-module ts-node/register --publish-quiet",
"test:coverage": "nyc --all mocha -r ts-node/register --extension .ts --spec src/**/*.test.ts",
"doc:bounded-contexts": "ts-node src/tools/build-bounded-context-summary.ts"
},
"engines": {
"node": "^16.0.0"
},
"dependencies": {
"@sinclair/typebox": "^0.23.2",
"@types/pg-format": "^1.0.2",
"awilix": "^6.0.0",
"axios": "^0.24.0",
"dotenv": "^14.3.2",
"fastify": "^3.25.2",
"fastify-swagger": "^4.13.0",
"ioredis": "^4.28.2",
"luxon": "^2.1.1",
"pg": "^8.7.1",
"pg-format": "^1.0.4",
"pino-pretty": "^7.3.0",
"redis": "^4.0.1",
"ts-morph": "^13.0.2",
"typescript": "^4.5.4",
"ulid": "^2.3.0"
},
"devDependencies": {
"@cucumber/cucumber": "^8.0.0-rc.1",
"@types/chai": "^4.3.0",
"@types/ioredis": "^4.28.4",
"@types/luxon": "^2.0.7",
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"@types/pg": "^8.6.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"chai": "^4.3.4",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"type-fest": "^2.8.0"
}
}