forked from vendure-ecommerce/real-world-vendure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.81 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
{
"name": "real-world-vendure",
"version": "0.1.0",
"private": true,
"scripts": {
"populate": "ts-node populate.ts",
"compile-admin-ui": "ts-node src/compile-admin-ui.ts",
"run:server": "ts-node ./src/index.ts",
"run:worker": "ts-node ./src/index-worker.ts",
"start": "concurrently yarn:run:*",
"build": "rimraf dist && rimraf admin-ui && tsc && tsc -p tsconfig.migrations.json && yarn compile-admin-ui",
"codegen": "graphql-codegen --config ./codegen.ts",
"migration:generate": "ts-node migration generate",
"migration:run": "ts-node migration run",
"migration:revert": "ts-node migration revert",
"lint:fix": "eslint ./src/ --ext .ts --fix",
"e2e:reviews": "vitest --config src/plugins/reviews/e2e/config/vitest.config.js"
},
"dependencies": {
"@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",
"better-sqlite3": "^8.4.0"
},
"devDependencies": {
"@graphql-codegen/add": "5.0.0",
"@graphql-codegen/cli": "4.0.1",
"@graphql-codegen/typed-document-node": "^5.0.0",
"@graphql-codegen/typescript": "4.0.0",
"@graphql-codegen/typescript-compatibility": "2.1.5",
"@graphql-codegen/typescript-operations": "4.0.0",
"@swc/core": "^1.3.62",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vendure/create": "^2.0.0",
"@vendure/testing": "^2.0.0",
"@vendure/ui-devkit": "^2.0.0",
"concurrently": "8.1.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.4.1",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"unplugin-swc": "^1.3.2",
"vitest": "^0.32.0"
},
"overrides": {
"graphql": "16.6.0"
}
}