-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.77 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
{
"name": "clean-node-api",
"version": "3.0.0",
"main": "index.js",
"author": "Lucas Fernandes <fernandes.lucas11@outlook.com>",
"license": "MIT",
"engines": {
"node": "14.x"
},
"scripts": {
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"postbuild": "copyfiles -u 1 public/**/* dist/static",
"build:watch": "rimraf dist && tsc -w -p tsconfig-build.json",
"debug": "nodemon -L --watch ./dist --inspect=0.0.0.0:9222 --nolazy ./dist/main/server.js",
"up": "yarn build && docker-compose up -d",
"down": "docker-compose down",
"clear:jest": "jest --clearCache",
"test": "jest --passWithNoTests --noStackTrace --runInBand --no-cache",
"test:watch": "yarn test --watch",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage",
"test:coveralls": "yarn test:ci && yarn coveralls < coverage/lcov.info",
"prettier": "prettier --write .",
"lint": "eslint 'src/**' 'tests/**' --fix"
},
"dependencies": {
"@graphql-tools/schema": "7.1.5",
"@graphql-tools/utils": "7.10.0",
"apollo-server-express": "^3.1.2",
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"graphql": "^15.5.1",
"graphql-iso-date": "^3.6.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongo-round": "^1.0.0",
"mongodb": "^3.6.9",
"nodemon": "^2.0.12",
"swagger-ui-express": "^4.1.6",
"validator": "^13.6.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@shelf/jest-mongodb": "^1.2.5",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.12",
"@types/faker": "^5.5.7",
"@types/graphql": "^14.5.0",
"@types/graphql-iso-date": "^3.4.0",
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^8.5.4",
"@types/module-alias": "^2.0.1",
"@types/mongodb": "^3.6.19",
"@types/node": "^15.14.0",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.6.2",
"@typescript-eslint/eslint-plugin": "4",
"@typescript-eslint/parser": "^4.28.2",
"bson-objectid": "^2.0.1",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"eslint": "7",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "2",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-node": "11",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "4",
"faker": "^5.5.3",
"husky": "^7.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"mockdate": "^3.0.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}