forked from airwallex/airwallex-payment-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 879 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
{
"name": "node-demo",
"version": "0.0.1",
"description": "node demo for airwallex payment acceptance",
"main": "src/app.ts",
"scripts": {
"start": "ts-node --esm -r dotenv/config ./src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"author": "",
"license": "ISC",
"keywords": [],
"dependencies": {
"axios": "^0.20.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint": "^7.9.0",
"eslint-plugin-security": "^1.4.0",
"express": "^4.16.4",
"query-string": "^8.1.0",
"ts-node": "^10.3.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.16.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"typescript": "^3.3.3"
}
}