-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
{
"name": "github-projects-automation",
"version": "1.0.0",
"description": "GitHub Projects Automation automates the cards creation and movement in your GitHub projects",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib",
"build": "yarn clean && tsc",
"watch": "yarn clean && tsc --watch",
"test": "GITHUB_TOKEN='' jest --runInBand",
"deploy": "yarn build && serverless deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrancescoCioria/GitHub-Projects-Automation.git"
},
"author": "FrancescoCioria",
"license": "MIT",
"bugs": {
"url": "https://github.com/FrancescoCioria/GitHub-Projects-Automation/issues"
},
"homepage": "https://github.com/FrancescoCioria/GitHub-Projects-Automation#readme",
"dependencies": {
"@octokit/app": "^4.2.0",
"axios": "^0.19.2",
"camelcase-object": "^1.0.0",
"crypto": "^1.0.1",
"fp-ts": "^1.15.0",
"graphql-request": "^1.8.2",
"io-ts": "^1.8.5",
"lodash": "^4.11.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^23.3.3",
"@types/lodash": "^4.14.116",
"@types/nock": "^9.3.0",
"@types/node": "^13.11.1",
"jest": "^23.6.0",
"nock": "^10.0.0",
"prettier": "^1.14.3",
"ts-jest": "^23.10.3",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.json"
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"resolutions": {
"fp-ts": "1.15.0"
}
}