-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.71 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "cyber.pomodoro.user",
"version": "0.0.1",
"description": "Application to help perform the pomodoro technique",
"main": "dist/src/core/server.js",
"scripts": {
"dev": "sucrase-node src/core/server.ts",
"dev:watch": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules src/core/server.ts",
"start": "node dist/main/server.js",
"debug": "nodemon -L --watch ./dist --inspect=0.0.0.0:9222 --nolazy ./dist/main/server.js",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build:watch": "rimraf dist && tsc -p tsconfig.build.json -w",
"postbuild": "copyfiles -u 1 public/**/* dist/static",
"up": "npm run build && docker-compose up -d",
"down": "docker-compose down",
"check": "npm-check -s -u",
"test": "jest --passWithNoTests --runInBand --no-cache",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cyber-Psilocybin-Institute/cyber.pomodoro.user.git"
},
"keywords": [
"cyber",
"pomodoro",
"nodejs",
"typescript",
"mongodb",
"clean",
"architecture",
"ddd",
"bdd"
],
"author": "Cyber Psilocybin Institute",
"license": "ISC",
"bugs": {
"url": "https://github.com/Cyber-Psilocybin-Institute/cyber.pomodoro.user/issues"
},
"homepage": "https://github.com/Cyber-Psilocybin-Institute/cyber.pomodoro.user#readme",
"engines": {
"node": "16.x"
},
"_moduleAliases": {
"@data": "dist/data",
"@domain": "dist/domain",
"@infra": "dist/infra",
"@core": "dist/core",
"@presentation": "dist/presentation",
"@validation": "dist/validation"
},
"devDependencies": {
"@shelf/jest-mongodb": "^2.2.0",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.28",
"@types/faker": "^6.6.9",
"@types/graphql": "^14.5.0",
"@types/graphql-iso-date": "^3.4.0",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.0",
"@types/mongodb": "^4.0.7",
"@types/node": "^17.0.17",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"bson-objectid": "^2.0.2",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"eslint": "^8.9.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"faker": "^5.5.3",
"git-commit-msg-linter": "^4.0.7",
"husky": "^7.0.4",
"i": "^0.3.7",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"mockdate": "^3.0.5",
"npm": "^8.5.0",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"@graphql-tools/schema": "^8.3.1",
"@graphql-tools/utils": "^8.6.1",
"@types/ioredis": "^4.28.8",
"apollo-server-express": "^3.6.3",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"graphql": "^16.3.0",
"graphql-scalars": "^1.14.1",
"ioredis": "^4.28.5",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongo-round": "^1.0.0",
"mongodb": "^4.3.1",
"nodemon": "^2.0.15",
"sucrase": "^3.20.3",
"swagger-ui-express": "^4.3.0",
"ts-node-dev": "^1.1.8",
"validator": "^13.7.0"
}
}