forked from avendure/VendurePlugin-Store-Credit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.85 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
47
48
49
50
51
52
53
54
55
56
{
"name": "@avendure/vendure-plugin-store-credit",
"version": "1.0.19",
"description": "Offers a store credit implementation plugin for users to transact using store credits",
"author": "",
"repository": "https://github.com/avendure/VendurePlugin-Store-Credit",
"license": "MIT",
"private": false,
"engines": {
"node": ">=16.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"start": "ts-node test/dev-server.ts",
"build": "rimraf dist && tsc && cp -r src/ui dist/",
"test": "vitest run",
"db_test": "rimraf __data__ && vitest run",
"codegen": "graphql-codegen --config ./codegen.json",
"format": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@apollo/server": "^4.10.0",
"@graphql-codegen/add": "^5.0.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typed-document-node": "^5.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-compatibility": "^2.1.5",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@swc/core": "^1.3.96",
"@types/randombytes": "^2.0.3",
"@vendure/admin-ui-plugin": "^2.1.5",
"@vendure/asset-server-plugin": "^2.1.5",
"@vendure/core": "^2.1.5",
"@vendure/create": "^2.1.5",
"@vendure/testing": "^2.1.5",
"@vendure/ui-devkit": "^2.1.5",
"dotenv": "^16.3.1",
"graphql-tag": "^2.12.6",
"prettier": "^3.1.1",
"randombytes": "^2.1.0",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "5.1.6",
"unplugin-swc": "^1.4.3",
"vitest": "^0.34.6"
},
"dependencies": {
"copyfiles": "^2.4.1",
"deepmerge": "^4.3.1"
}
}