-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "sample",
"description": "Node App",
"scripts": {
"start": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint --fix . --ext .ts",
"prepare": "husky install"
},
"engines": {
"node": "14.17.3"
},
"main": "index.ts",
"dependencies": {
"@types/authorizenet": "^1.0.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/stripe-v3": "^3.1.26",
"@types/supertest": "^2.0.11",
"authorizenet": "^1.0.8",
"axios": "^0.21.4",
"axios-mock-adapter": "^1.20.0",
"body-parser": "^1.19.0",
"braintree": "^3.8.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eslint-config-conversio": "^5.2.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.1",
"jest": "^27.5.1",
"jsonwebtoken": "^8.5.1",
"node-bigcommerce": "^4.1.0",
"stripe": "^8.209.0",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"uuid": "^8.3.2",
"zod": "^3.12.0"
},
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"husky": "^7.0.0"
}
}