-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.57 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.57 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
{
"name": "codegen-experiment",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:dictybase-playground/codegen-experiment.git",
"author": "Ayaan Siddiqui <ayaanqui.com@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@apollo/client": "^3.5.7",
"@graphql-codegen/cli": "2.3.1",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.2",
"@graphql-codegen/typescript-operations": "2.2.2",
"@graphql-codegen/typescript-react-apollo": "3.2.4",
"@reasonml-community/graphql-ppx": "^1.2.2",
"@rescript/react": "^0.10.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^17.0.10",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@yarnpkg/pnpify": "^3.1.1-rc.11",
"graphql": "^16.2.0",
"graphql-tag": "^2.12.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rescript": "^9.1.4",
"rescript-apollo-client": "^2.4.1",
"semantic-release": "^19.0.2",
"typescript": "^4.5.4"
},
"scripts": {
"generate": "graphql-codegen",
"build": "tsc types/index.ts --outDir ./dist --esModuleInterop",
"compile": "yarn run generate && yarn run build",
"re:build": "rescript",
"re:watch": "rescript build -w",
"re:start": "rescript build -w",
"re:clean": "rescript clean -with-deps"
}
}