-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
131 lines (131 loc) · 3.92 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "cirrus-ci-web",
"description": "The source that powers https://cirrus-ci.com",
"repository": {
"type": "git",
"url": "https://github.com/cirruslabs/cirrus-ci-web.git"
},
"bugs": {
"url": "https://github.com/cirruslabs/cirrus-ci-docs/issues"
},
"homepage": "https://cirrus-ci.com",
"version": "0.1.0",
"private": true,
"license": "MIT",
"dependencies": {
"@babel/preset-env": "^7.22.4",
"@babel/runtime": "^7.22.3",
"@dagrejs/graphlib": "^2.1.13",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@improbable-eng/grpc-web": "^0.15.0",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.134",
"@mui/material": "^5.13.5",
"@mui/styles": "^5.13.2",
"@mui/utils": "^5.13.1",
"@sentry/react": "^8.33.1",
"@sentry/tracing": "^7.53.1",
"@stripe/react-stripe-js": "^2.1.0",
"@stripe/stripe-js": "^1.54.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"ansi_up": "^5.2.1",
"babel-plugin-relay": "^15.0.0",
"buffer": "^6.0.3",
"classnames": "^2.3.2",
"clipboard-copy": "^4.0.1",
"crypto-browserify": "^3.12.0",
"google-protobuf": "^3.21.2",
"graphiql": "^2.4.7",
"graphql": "^16.6.0",
"graphql-relay": "^0.10.0",
"js-base64": "^3.7.5",
"pluralize": "^8.0.0",
"prop-types": "^15.8.1",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-ace": "^12.0.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-markdown": "^8.0.7",
"react-relay": "^15.0.0",
"react-router-dom": "^6.14.1",
"react-stripe-elements": "^6.1.2",
"react-vis": "^1.11.12",
"recharts": "^2.6.2",
"recoil": "^0.7.7",
"rehype-sanitize": "^5.0.1",
"remark-gfm": "^3.0.1",
"sjcl": "^1.0.8",
"stream-browserify": "^3.0.0",
"ts-protoc-gen": "^0.15.0",
"tss-react": "^4.8.5",
"vm-browserify": "^1.1.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/babel__preset-env": "^7.9.2",
"@types/classnames": "^2.3.1",
"@types/google-protobuf": "^3.15.12",
"@types/graphlib": "^2.1.12",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.200",
"@types/node": "^20.2.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-helmet": "^6",
"@types/react-relay": "^14.1.4",
"@types/react-router-dom": "^5.3.3",
"@types/relay-runtime": "^14.1.10",
"get-graphql-schema": "^2.1.2",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"react-app-rewired": "^2.2.1",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0",
"relay-compiler": "^15.0.0",
"typescript": "^5.0.4",
"yarn-upgrade-all": "^0.7.2"
},
"resolutions": {
"react-dev-utils/fork-ts-checker-webpack-plugin": "^6.5.3"
},
"scripts": {
"start": "react-app-rewired start",
"start-untyped": "TSC_COMPILE_ON_ERROR=\"true\" react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"update-snapshots": "react-app-rewired test --env=jsdom --updateSnapshot",
"typecheck": "tsc --project tsconfig.json --noEmit",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"relay": "relay-compiler",
"sync-schema": "get-graphql-schema https://api.cirrus-ci.com/schema.json | sed -e 's/Long/Int/g' > schema.gql && prettier --write schema.gql",
"bootstrap": "yarn sync-schema && yarn relay",
"husky-run": "husky run"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"babelMacros": {
"relay": {}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"packageManager": "[email protected]"
}