-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.26 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
{
"name": "monday-integration-quickstart-app-typescript",
"version": "0.0.1",
"license": "UNLICENSED",
"scripts": {
"start-server": "concurrently \"DEV=true ts-node-dev --watch ./.env ./src/app.ts\" \"cd client && npm run dev\"",
"build": "tsc",
"start": "node ./dist/app.js",
"expose": "mapps tunnel:create -p 8080",
"stop": "kill-port 8080",
"deploy": "npm run client-build && mapps code:push",
"client-build": "cd client && npm run build"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"body-parser": "^1.19.0",
"bulma-timeline": "^3.0.5",
"chart.js": "^4.4.4",
"dotenv": "^5.0.1",
"express": "^4.17.1",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"http-proxy-middleware": "^3.0.2",
"jsonwebtoken": "^9.0.2",
"monday-sdk-js": "^0.5.2",
"querystring": "^0.2.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"@mondaycom/apps-cli": "^4.1.1",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"concurrently": "^8.2.2",
"cross-port-killer": "^1.2.1",
"debug": "~2.6.9",
"eslint": "^v6.8.0",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
}
}