-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 935 Bytes
/
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
{
"name": "graphql-typeop",
"version": "0.2.1",
"description": "Build GraphQL operations via TypeScript class definitions",
"main": "dist/index.js",
"scripts": {
"build": "tsc --project tsconfig.json",
"build:watch": "tsc --project tsconfig.json --watch",
"test": "npm run test:transformer && npm run test:builder",
"test:transformer": "npm run build && node scripts/test-transformer.js",
"test:builder": "npm run build && jest",
"publish": "node scripts/publish.js"
},
"author": "Markus Glutting",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"chalk": "^4.1.2",
"graphql": "^15.5.1",
"jest": "^27.2.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}