forked from cirruslabs/cirrus-ci-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.47 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.47 KB
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
{
"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": {
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@improbable-eng/grpc-web": "^0.14.0",
"@mui/icons-material": "^5.1.0",
"@mui/lab": "^5.0.0-alpha.54",
"@mui/material": "^5.1.0",
"@mui/styles": "^5.1.0",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.12.1",
"@types/google-protobuf": "^3.15.2",
"ansi_up": "^5.0.0",
"babel-plugin-relay": "^12.0.0",
"classnames": "^2.2.6",
"clipboard-copy": "^4.0.1",
"google-protobuf": "^3.17.3",
"graphiql": "^1.4.0",
"graphql": "^15.8.0",
"graphql-relay": "^0.9.0",
"js-base64": "^3.7.2",
"pluralize": "^8.0.0",
"prop-types": "^15.7.2",
"query-string": "^6.13.7",
"react": "^17.0.2",
"react-ace": "^9.5.0",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-markdown": "^7.1.2",
"react-relay": "^12.0.0",
"react-router-dom": "^6.0.2",
"react-stripe-elements": "^6.1.2",
"react-vis": "^1.11.7",
"recharts": "^1.8.5",
"recoil": "^0.5.2",
"rehype-sanitize": "^5.0.1",
"remark-gfm": "^3.0.1",
"sjcl": "^1.0.8",
"ts-protoc-gen": "^0.15.0",
"xterm": "^4.12.0",
"xterm-addon-fit": "^0.5.0"
},
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.19",
"@types/node": "^16.11.12",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-helmet": "^6.1.0",
"@types/react-relay": "^11.0.3",
"@types/react-router-dom": "^5.1.6",
"@types/relay-runtime": "^12.0.1",
"esbuild": "^0.14.11",
"esbuild-loader": "^2.18.0",
"get-graphql-schema": "^2.1.2",
"husky": "^4.3.6",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react-scripts": "^5.0.0",
"react-test-renderer": "^17.0.1",
"relay-compiler": "^12.0.0",
"relay-compiler-language-typescript": "^15.0.0",
"typescript": "^4.5.2"
},
"scripts": {
"start": "react-scripts start",
"start-untyped": "TSC_COMPILE_ON_ERROR=\"true\" react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"typecheck": "tsc --project tsconfig.json --noEmit",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"relay": "relay-compiler --verbose --watchman false --src ./src --schema schema.graphql --language typescript",
"sync-schema": "get-graphql-schema https://api.cirrus-ci.com/schema.json | sed -e 's/Long/Int/g' > schema.graphql && prettier --write schema.graphql",
"bootstrap": "yarn sync-schema && yarn relay"
},
"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": "yarn@3.1.1",
"resolutions": {
"react-scripts": "patch:react-scripts@npm:5.0.0#.yarn/patches/react-scripts-npm-5.0.0-14ea4c40dd.patch"
}
}