-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 1.18 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
{
"name": "aexol-shop-backend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:server": "ts-node ./src/index.ts",
"dev:worker": "ts-node ./src/index-worker.ts",
"dev": "concurrently npm:dev:*",
"build": "tsc",
"start:server": "node ./dist/index.js",
"start:worker": "node ./dist/index-worker.js",
"start": "concurrently npm:start:*",
"migration:generate": "ts-node migration generate",
"migration:run": "ts-node migration run",
"migration:revert": "ts-node migration revert",
"stripe": "stripe listen --forward-to localhost:3000/payments/stripe"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.478.0",
"@aws-sdk/credential-providers": "^3.668.0",
"@aws-sdk/lib-storage": "^3.478.0",
"@vendure/admin-ui-plugin": "2.1.4",
"@vendure/asset-server-plugin": "2.1.4",
"@vendure/core": "2.1.4",
"@vendure/create": "^2.1.5",
"@vendure/email-plugin": "2.1.4",
"@vendure/payments-plugin": "^2.1.5",
"@vendure/ui-devkit": "^2.1.5",
"dotenv": "16.3.1",
"pg": "8.11.3",
"stripe": "^13.11.0",
"typescript": "4.9.5"
},
"devDependencies": {
"concurrently": "8.2.2",
"ts-node": "10.9.2"
}
}