-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.32 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
{
"name": "graphql-playground",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"start": "npm-run-all start:*",
"start:dev": "nodemon",
"mig:up": "ts-node ./node_modules/typeorm/cli.js migration:run",
"mig:down": "ts-node ./node_modules/typeorm/cli.js migration:revert",
"build": "rimraf dist && tsc",
"lint": "eslint 'packages/**/{src,__tests__}/**/**.{ts,json,js}'",
"lint:fix": "eslint --fix 'packages/**/{src,__tests__}/**/**.{ts,json,js}'",
"build-schema": "npm-run-all build-schema:*",
"build-schema:clean": "rimraf src/schema/dist",
"build-schema:concat": "mkdir src/schema/dist && concat -o src/schema/dist/schema.gql src/schema/*.gql",
"build-schema:dts": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"typescript": "^3.4.5",
"lerna": "3.22.1",
"eslint": "6.6.0",
"@typescript-eslint/eslint-plugin": "3.9.0",
"@typescript-eslint/parser": "3.9.0",
"babel-eslint": "10.1.0",
"eslint-plugin-graphql": "4.0.0",
"eslint-plugin-typeorm": "0.0.19",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"graphql": "15.3.0",
"typeorm": "0.2.25",
"prettier": "2.0.5"
}
}