-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.77 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.77 KB
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
{
"name": "slack-clone",
"description": "my stellar project",
"version": "1.0.0",
"author": "Tousif <tousif101@outlook.com> ()",
"bugs": {
"url": "https://github.com/CoderTousif/slack-clone/issues",
"email": "tousif101@outlook.com"
},
"contributors": [
"Tousif <tousif101@outlook.com> ()"
],
"dependencies": {
"apollo-server-express": "^2.21.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.4.0",
"graphql-redis-subscriptions": "^2.3.1",
"graphql-scalars": "^1.7.0",
"graphql-tools": "^7.0.2",
"graphql-upload": "^11.0.0",
"ioredis": "^4.23.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.5",
"slugify": "^1.4.6"
},
"devDependencies": {
"@babel/node": "^7.12.10",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"babel-preset-env": "^1.7.0",
"cross-env": "latest",
"eslint": "latest",
"eslint-config-xo-lass": "latest",
"fixpack": "latest",
"husky": "latest",
"jest": "^26.6.3",
"lint-staged": "latest",
"remark-cli": "latest",
"remark-preset-github": "latest",
"xo": "latest"
},
"engines": {
"node": ">= 14"
},
"homepage": "https://github.com/CoderTousif/slack-clone-backend",
"keywords": [
"lass",
"slack-clone"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/CoderTousif/slack-clone-backend"
},
"scripts": {
"start": "cross-env NODE_ENV=production node server.js",
"dev": "cross-env NODE_ENV=development nodemon server.js",
"test-server": "cross-env NODE_ENV=test node server.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "pnpm run lint:js && pnpm run lint:md",
"lint:js": "xo",
"lint:md": "remark . -qfo",
"pretest": "pnpm run lint",
"test": "cross-env NODE_ENV=test jest",
"test-coverage": "cross-env NODE_ENV=test nyc pnpm run test"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
],
"rules": {
"unicorn/catch-error-name": "off",
"node/prefer-global/url-search-params": "off"
},
"globals": [
"describe",
"test",
"expect"
],
"overrides": []
}
}