-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.3 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
40
41
42
43
44
45
46
{
"name": "@callit-today/vendure-plugin-back-in-stock",
"version": "2.0.2",
"description": "Back-In-Stock Email Notification Plugin For Vendure",
"author": "CALLiT.today <[email protected]>",
"repository": "https://github.com/calliT-today/vendure-plugin-back-in-stock",
"license": "MIT",
"private": false,
"engines": {
"node": ">=16.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rimraf dist && tsc && copyfiles -u 1 'src/ui/**/*' dist/",
"generate": "graphql-codegen",
"start": "ts-node test/dev-server.ts",
"test": "vitest run"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.4.0",
"@graphql-codegen/typescript": "^2.4.8",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@swc/core": "^1.3.58",
"@vendure/admin-ui-plugin": "2.0.0",
"@vendure/asset-server-plugin": "2.0.0",
"@vendure/core": "2.0.0",
"@vendure/email-plugin": "2.0.0",
"@vendure/testing": "2.0.0",
"@vendure/ui-devkit": "2.0.0",
"copyfiles": "^2.4.1",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "4.9.5",
"unplugin-swc": "^1.3.2",
"vitest": "^0.31.0"
},
"dependencies": {
"@ardatan/aggregate-error": "^0.0.6",
"build": "^0.1.4"
}
}