-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.53 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.53 KB
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
{
"name": "@o2s/integrations.strapi-cms",
"version": "0.10.1",
"private": false,
"license": "MIT",
"exports": {
"./integration": "./dist/src/integration.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")",
"build": "tsc && tsc-alias",
"lint": "tsc --noEmit && eslint . --max-warnings 0",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,scss,json}\"",
"generate": "graphql-codegen && prettier --write \"generated/**/*.ts\""
},
"dependencies": {
"@nestjs/axios": "^3.1.2",
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.0.0",
"@o2s/framework": "*",
"@o2s/utils.logger": "*",
"flatted": "^3.3.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"graphql": "16.10.0",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.2.3",
"@graphql-codegen/typescript-resolvers": "^4.2.1",
"@o2s/eslint-config": "*",
"@o2s/prettier-config": "*",
"@o2s/typescript-config": "*",
"concurrently": "^9.1.0",
"eslint": "^8.57.0",
"prettier": "^3.4.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2"
}
}