-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
31 lines (31 loc) · 872 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
{
"name": "stripe-account-migration",
"version": "1.0.0",
"description": "",
"author": "Lukas Kupczyk <[email protected]>",
"license": "COMMERCIAL",
"scripts": {
"setup": "cp .env-template .env",
"dev:tsc": "tsc --build --force --verbose --watch",
"dev:nodemon": "nodemon build/index.js",
"build": "tsc --build --force",
"start": "node build/index.js",
"test": "exit 0"
},
"devDependencies": {
"@types/node": "^17.0.31",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.0",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.27.2",
"bson": "^4.6.3",
"csv": "^6.2.0",
"dotenv": "^16.0.0",
"stripe": "^9.14.0",
"zod": "^3.14.4"
}
}