-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.22 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
{
"name": "clean-ts-api",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"license": "MIT",
"author": "",
"scripts": {
"start": "node dist/main/server.js",
"dev": "ts-node-dev -r tsconfig-paths/register --transpile-only ./src/main/server.ts",
"build": "rimraf dist && npm run copy:files && tsc -p tsconfig-build.json",
"build:watch": "npm run build -- -w",
"copy:files": "npx copyfiles -u 1 public/**/* dist/static",
"docker:up": "npm run build && docker-compose up -d --build",
"docker:start": "nodemon -L --watch ./dist --nolazy ./dist/main/server.js",
"docker:down": "docker-compose down",
"test": "jest --runInBand --no-cache",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:int": "npm test -- --watch -c jest-integration-config.js",
"test:ci": "npm test -- --coverage",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info"
},
"devDependencies": {
"@faker-js/faker": "^6.1.1",
"@shelf/jest-mongodb": "^2.2.1",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"copyfiles": "^2.4.1",
"eslint": "^7.12.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"git-commit-msg-linter": "^4.1.1",
"jest": "^27.5.1",
"mockdate": "^3.0.5",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.13.0",
"typescript": "^4.6.2"
},
"dependencies": {
"apollo-server-express": "^3.6.7",
"bcrypt": "^5.0.1",
"express": "^4.17.3",
"graphql": "^16.3.0",
"graphql-scalars": "^1.17.0",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongo-round": "^1.0.0",
"mongodb": "^4.4.1",
"nodemon": "^2.0.15",
"swagger-ui-express": "^4.3.0",
"validator": "^13.7.0"
},
"engines": {
"node": "16.x"
},
"_moduleAliases": {
"@": "dist"
}
}