-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 936 Bytes
/
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
{
"name": "monday-integration-quickstart",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"start": "npm run stop && npm run server",
"server": "nodemon ./src/app.js",
"stop": "kill-port 8302"
},
"nodemonConfig": {
"watch": [
".env",
"src/"
]
},
"dependencies": {
"@babel/eslint-parser": "^7.19.1",
"body-parser": "^1.19.0",
"cross-port-killer": "^1.2.1",
"dataloader": "^2.1.0",
"dotenv": "^5.0.1",
"eslint": "^8.24.0",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"jsonwebtoken": "^8.5.1",
"monday-sdk-js": "^0.0.12",
"mongoose": "^6.6.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"chai": "^4.1.2",
"concurrently": "^5.2.0",
"debug": "~2.6.9",
"localtunnel": "^2.0.1",
"mocha": "^10.0.0",
"mock-require": "^3.0.1",
"nodemon": "^2.0.2",
"sinon": "^7.4.2"
}
}