-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 956 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 956 Bytes
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
{
"name": "taskade",
"version": "1.1.0",
"description": "Taskade is a collaboration platform for remote teams to organize and manage projects.",
"main": "index.js",
"scripts": {
"test": "npm run build && jest --testTimeout 10000 --rootDir ./lib/test",
"build": "npm run clean && tsc",
"clean": "rimraf ./lib ./build",
"watch": "npm run clean && tsc --watch"
},
"engines": {
"node": ">=v18",
"npm": ">=5.6.0"
},
"dependencies": {
"@taskade/eslint-plugin": "0.4.0",
"cross-fetch": "^3.1.5",
"moment": "^2.29.1",
"moment-timezone": "^0.5.37",
"zapier-platform-core": "17.4.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^18.12.0",
"@types/node-fetch": "^2.6.12",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"typescript": "5.3.3",
"zapier-platform-schema": "17.4.0"
},
"private": true,
"zapier": {
"convertedByCLIVersion": "12.0.3"
}
}