generated from kriasoft/react-starter-kit
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.21 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "root",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"workspaces": [
"app",
"edge"
],
"scripts": {
"postinstall": "husky install && zx ./scripts/postinstall.js",
"update-schema": "zx ./scripts/update-schema.js",
"start": "zx ./scripts/start.js",
"lint": "eslint --cache --report-unused-disable-directives .",
"test": "jest",
"build": "yarn workspaces foreach -ti run build",
"app:start": "yarn workspace app start",
"app:build": "yarn workspace app build",
"app:preview": "yarn workspace app preview",
"app:deploy": "yarn workspace app deploy"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@emotion/eslint-plugin": "^11.10.0",
"@jest/types": "^29.4.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/babel__core": "^7.20.0",
"@types/babel__plugin-transform-runtime": "^7.9.2",
"@types/babel__preset-env": "^7.9.2",
"@types/eslint": "^8.21.0",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"babel-jest": "^29.4.2",
"babel-plugin-import": "^1.13.6",
"babel-plugin-replace-import-extension": "^1.1.3",
"envars": "^0.4.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^7.0.0",
"got": "^12.5.3",
"graphql": "^16.6.0",
"husky": "^8.0.3",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"pretty-bytes": "^6.1.0",
"react": "^18.2.0",
"relay-config": "^12.0.1",
"rollup": "^3.15.0",
"typescript": "^4.9.5",
"wrangler": "^2.9.1",
"zx": "^7.1.1"
},
"resolutions": {
"chalk@npm:^5.0.1": "^4.1.2"
},
"sideEffects": false,
"jest": {
"cacheDirectory": ".cache/jest",
"testPathIgnorePatterns": [
"<rootDir>/.cache/",
"<rootDir>/.github/",
"<rootDir>/.husky/",
"<rootDir>/.vscode/",
"<rootDir>/.yarn/",
"<rootDir>/dist/",
"<rootDir>/scripts/"
]
},
"relay": {
"src": ".",
"schema": "schema.graphql",
"language": "typescript",
"artifactDirectory": "./queries",
"schemaExtensions": [
"."
],
"eagerEsModules": true
},
"envars": {
"cwd": "./env"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"endOfLine": "lf"
}
}