-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1004 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1004 Bytes
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
{
"name": "@wildxhild/pba-csv",
"version": "1.0.0",
"description": "Secure Payment Billing Address – Copy & View (PBA CSV) CLI",
"main": "backend/server.js",
"bin": {
"pba-csv": "backend/server.js"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"start": "node backend/server.js",
"dev": "nodemon backend/server.js",
"test": "jest --coverage",
"build:frontend": "webpack --mode production"
},
"keywords": [
"payment",
"billing",
"address",
"csv",
"encryption",
"secure",
"cli"
],
"license": "SEE LICENSE.md",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.0.0",
"dotenv": "^16.3.1",
"libsodium.js": "^0.7.11"
},
"devDependencies": {
"nodemon": "^3.0.1",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"jest": "^29.7.0",
"@types/node": "^20.5.0",
"typescript": "^5.1.6"
}
}