forked from Denisse-AB/vue-stripe-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "subscriptions",
"version": "1.0.1",
"description": "Stripe Subscriptions Boilerplate",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node build/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q build/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "Denisse Abreu",
"email": "[email protected]"
},
"funding": {
"type": "individual",
"url": "https://www.paypal.com/donate?business=263QJ8D5YHR8E&no_recurring=0&item_name=I+believe+in+open+source%2C+but+a+little+donation+will+be+appreciated.+Thanks%21¤cy_code=USD"
},
"keywords": [],
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"stripe": "^10.7.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.7.14",
"concurrently": "^7.3.0",
"nodemon": "^2.0.19",
"typescript": "^4.8.2"
},
"engines": {
"node": "^16.17.1"
}
}