-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.58 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
{
"name": "@khanacademy/graphql-flow",
"version": "3.1.1",
"bin": {
"graphql-flow": "./dist/cli/run.js"
},
"scripts": {
"test": "jest",
"publish:ci": "yarn run build && changeset publish",
"build": "babel src --extensions '.ts, .tsx' --out-dir dist --ignore 'src/**/*.spec.ts','src/**/*.test.ts' && chmod 755 dist/cli/run.js"
},
"main": "dist/index.js",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/eslint-parser": "^7.17.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.22.5",
"@changesets/cli": "^2.21.1",
"@khanacademy/eslint-config": "^4.0.0",
"@types/jest": "^29.5.3",
"@types/prop-types": "^15.7.12",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"babel-jest": "23.4.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "7.0.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^4.0.0",
"graphql-tag": "2.10.1",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@babel/core": "^7.6.2",
"@babel/generator": "^7.17.3",
"@babel/traverse": "^7.17.3",
"@babel/types": "^7.17.0",
"@khanacademy/wonder-stuff-core": "^1.5.1",
"apollo-utilities": "^1.3.4",
"graphql": "^16.9.0",
"jsonschema": "^1.4.1"
}
}