-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 931 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
{
"name": "@deekshasharma/typescript-serverless-vercel",
"version": "0.0.0-development",
"author": "deekshasharma",
"private": true,
"license": "MIT",
"scripts": {
"start": "vercel dev",
"test": "jest --testPathIgnorePatterns=integration_tests",
"test:watch": "jest --watch --testPathIgnorePatterns=integration_tests",
"test:integration": "jest int",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@vercel/node": "^1.9.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"semantic-release": "^17.4.2"
},
"dependencies": {
"invariant": "^2.2.4",
"stripe": "^8.152.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hhimanshu/typescript-serverless-api-vercel"
},
"release": {
"branches": [
"main"
]
}
}