forked from kriasoft/react-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"workspaces": [
"app",
"edge",
"scripts"
],
"scripts": {
"postinstall": "husky install && node ./scripts/postinstall.js",
"update-schema": "node ./scripts/update-schema.js",
"start": "node --experimental-vm-modules ./scripts/start.js",
"lint": "eslint --cache --report-unused-disable-directives .",
"test": "vitest",
"build": "yarn workspaces foreach -ti run build",
"deploy": "yarn workspace edge deploy"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@emotion/eslint-plugin": "^11.11.0",
"@types/eslint": "^8.40.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"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",
"graphql": "^16.6.0",
"happy-dom": "^9.20.3",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"react": "^18.2.0",
"relay-config": "^12.0.1",
"typescript": "~5.0.4",
"vite": "^4.3.9",
"vitest": "^0.32.0"
},
"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"
}
}