-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.5 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
118
119
120
121
122
{
"name": "post-your-standup",
"version": "0.0.1",
"private": true,
"description": "An interactive Slack app to help you post your standup based on your Jira boards",
"scripts": {
"app:start": "nodemon server.js",
"app:prod:kill": "pm2 kill",
"app:prod:start": "pm2 start server.js",
"web:client:start": "webpack serve --open --hot --env development",
"web:client:prod:build": "cross-env NODE_ENV=production webpack --env production",
"web:server:start": "nodemon web/server",
"web:server:prod:start": "cross-env NODE_ENV=production pm2 start web/server",
"test:unit": "jest unit --env=node --passWithNoTests",
"test:unit:coverage": "jest unit --env=node --passWithNoTests --coverage --config=jest.config.json",
"test:unit:coverage:open": "serve coverage/lcov-report",
"lint": "eslint .",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md)\"",
"codecov:report": "cat ./coverage/lcov.info | codecov",
"release": "semantic-release"
},
"dependencies": {
"@apollo/client": "^3.3.6",
"@auth0/auth0-react": "^1.2.0",
"@slack/bolt": "^2.5.0",
"apollo-server": "^2.19.1",
"dotenv": "^8.2.0",
"express-jwt": "^6.0.0",
"graphql": "^15.4.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.12.0",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"mongoose": "^5.11.10",
"node-fetch": "^2.6.1",
"pm2": "^4.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"serialize-error": "^7.0.1",
"uuid": "^8.3.2"
},
"engines": {
"node": "12.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeoDoo/post-your-standup.git"
},
"author": "Georgios Karametas <geometas@hotmail.com> (https://geodoo.work/)",
"bugs": {
"url": "https://github.com/GeoDoo/post-your-standup/issues"
},
"license": "LGPL v2.1",
"keywords": [
"node",
"express"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@testing-library/react": "^11.2.2",
"autoprefixer": "^10.2.0",
"babel-loader": "^8.2.1",
"codecov": "^3.8.1",
"commitizen": "^4.2.2",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.17.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"postcss": "^8.2.2",
"postcss-loader": "^4.1.0",
"precss": "^4.0.0",
"prettier": "^2.2.1",
"semantic-release": "^17.3.1",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "npm run lint && npm run format"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix",
"git add"
],
"*.+(json|css|md)": [
"prettier --write",
"git add"
]
},
"_moduleAliases": {
"@root": ".",
"@web": "./web",
"@core": "./core",
"@db": "./db",
"@utils": "./utils"
}
}