This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.22 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
{
"name": "magellan-soyuz-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"gen:proto": "make genproto",
"test": "react-scripts test",
"eject": "react-scripts eject",
"gen": "make genproto",
"typecheck": "tsc --project tsconfig.json --noEmit",
"deps": "depcheck --ignores bufferutil,utf-8-validate,ts-proto,ts-poet,esbuild,protobufjs,graphql,@aperturerobotics/ts-common,@types/jest,typedoc",
"lint": "npm run lint:go && npm run lint:js",
"lint:go": "make lint",
"lint:js": "eslint -c .eslintrc.js --ext .ts ./**/*.ts",
"precommit": "npm run format",
"format": "prettier --write './!(vendor|dist)/**/(*.ts|*.tsx|*.html|*.css)'",
"patch": "patch-package --use-yarn --patch-dir ./node_modules/@aperturerobotics/ts-common/patches",
"prepare": "npm run patch && go mod vendor"
},
"dependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"eslint-config-prettier": "^9.1.0",
"graphql": "^16.8.1",
"husky": "^8.0.3",
"long": "^5.2.3",
"monaco-editor": "^0.45.0",
"protobufjs": "^7.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-monaco-editor": "^0.55.0",
"react-scripts": "5.0.1",
"rgraphql": "^0.9.0",
"soyuz": "^0.7.6",
"typescript": "~5.3.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"{src,test}/**/*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"devDependencies": {
"@aperturerobotics/ts-common": "^0.8.1",
"@typescript-eslint/parser": "^6.15.0",
"depcheck": "^1.4.7",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"ts-poet": "^6.6.0",
"ts-proto": "^1.165.2"
}
}