-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "payshift",
"version": "1.0.62",
"description": "unified payment api for multiple payment processors",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"test": "NODE_ENV=development vitest",
"build": "npx tsc",
"dev": "npx ts-node src/dev.ts",
"start": "node dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"alipay-sdk": "^4.1.0",
"axios": "^1.5.1",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"mongoose": "^7.6.2",
"stripe": "^11.18.0",
"wechatpay-node-v3": "^2.1.6"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.4",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "*",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"chai-http": "^4.3.0",
"eslint": "^8.35.0",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vitest": "^1.3.1"
}
}