-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
101 lines (101 loc) · 3.03 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
{
"name": "taskmeow",
"version": "1.0.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ydogandjiev/taskmeow.git"
},
"bugs": {
"url": "https://github.com/ydogandjiev/taskmeow/issues"
},
"dependencies": {
"@azure/msal-browser": "^3.7.0",
"@microsoft/teams-js": "^2.20.0-beta.1",
"@slack/events-api": "^3.0.0",
"@slack/interactive-messages": "^2.0.0",
"@slack/web-api": "^6.0.0",
"@uifabric/icons": "^7.7.0",
"applicationinsights": "^1.0.3",
"body-parser": "^1.17.2",
"botbuilder": "^3.15.0",
"botbuilder-teams": "^0.2.1",
"cookie-parser": "^1.4.3",
"dotenv": "^6.0.0",
"express": "^4.17.3",
"express-bearer-token": "^2.1.1",
"express-graphql": "^0.6.12",
"express-session": "^1.17.3",
"graphql": "^0.13.2",
"http-proxy-middleware": "^1.0.6",
"jest-environment-jsdom": "^27.5.1",
"jest-environment-jsdom-global": "^3.0.0",
"mongodb": "^4.17.2",
"mongoose": "^6.12.0",
"morgan": "^1.9.1",
"node-fetch": "^2.7.0",
"office-ui-fabric-react": "^7.185.2",
"passport": "^0.6.0",
"passport-azure-ad": "^4.3.4",
"pug": "^3.0.1",
"random-number-csprng": "^1.0.2",
"react": "^17.0.1",
"react-dnd": "^15.1.1",
"react-dnd-html5-backend": "^15.1.2",
"react-dom": "^16.8.6",
"react-json-view": "^1.21.3",
"react-router-dom": "^6.3.0",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"concurrently": "^3.5.0",
"coveralls": "^3.0.1",
"eslint": "^8.13.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-react": "^7.29.4",
"husky": ">=6",
"lint-staged": ">=10",
"nodemon": "^1.19.1",
"prettier": "2.6.2",
"react-dnd-test-backend": "^15.1.1",
"react-dnd-test-utils": "^15.1.1",
"react-scripts": "5.0.0"
},
"scripts": {
"start": "concurrently \"react-scripts start\" \"nodemon server/server.js\"",
"client": "react-scripts start",
"server": "nodemon server/server.js",
"build": "react-scripts build && rm -rf server/build && mv build server",
"test": "react-scripts test --env=jest-environment-jsdom-global --watchAll=false",
"coverage": "react-scripts test --env=jest-environment-jsdom-global --coverage --watchAll=false",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"eject": "react-scripts eject",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"prepare": "husky install"
},
"proxy": "http://localhost:3001",
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}