forked from kriasoft/graphql-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "app",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": "Kriasoft (https://github.com/kriasoft)",
"workspaces": [
"api",
"db",
"env",
"proxy",
"scripts",
"web"
],
"scripts": {
"setup": "node ./setup",
"start": "yarn workspaces foreach -ip run start",
"build": "yarn workspaces foreach -p run build",
"lint": "eslint --cache --report-unused-disable-directives .",
"test": "jest",
"g:lint": "yarn lint \"$INIT_CWD\"",
"g:test": "yarn test \"$INIT_CWD\""
},
"dependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/register": "^7.12.1",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-jest": "^26.6.0",
"cross-spawn": "^7.0.3",
"dotenv": "^8.2.0",
"env": "workspace:*",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.1.2",
"inquirer": "^7.3.3",
"jest": "^26.6.0",
"prettier": "2.1.2",
"typescript": "4.0.3"
},
"devDependencies": {
"@jest/types": "^26.6.0",
"@types/inquirer": "^7.3.1",
"@types/node": "^14.11.11",
"@types/prettier": "^2.1.5",
"@yarnpkg/pnpify": "2.3.3",
"husky": "^4.3.0"
},
"husky": {
"hooks": {
"pre-commit": "echo \"TODO: Add pre-commit hook\""
}
}
}