-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
150 lines (150 loc) · 5.36 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "urql-devtools",
"version": "2.1.0",
"description": "The official devtools utility for urql",
"homepage": "https://www.github.com/FormidableLabs/urql-devtools",
"bugs": {
"url": "https://github.com/FormidableLabs/urql-devtools/issues"
},
"repository": "https://www.github.com/FormidableLabs/urql-devtools",
"license": "MIT",
"author": "Formidable",
"keywords": [
"urql",
"devtools",
"extension",
"electron",
"react native"
],
"scripts": {
"build": "yarn build:extension && yarn build:electron",
"build:electron": "export NODE_ENV=production; export BUILD_ENV=electron; yarn webpack:extension && yarn webpack:electron",
"build:extension": "export NODE_ENV=production; export BUILD_ENV=extension; yarn webpack:extension",
"bundle": "cd dist/extension && bestzip ../../extension.zip *",
"changelog": "docker run -it --rm -v \"$(pwd)\":/usr/local/src/your-app ferrarimarco/github-changelog-generator",
"cosmos": "export BUILD_ENV=electron; cosmos",
"cosmos:build": "export BUILD_ENV=electron; yarn cosmos-export && node scripts/cosmos-add-badge.js",
"dev": "concurrently \"npm:dev:extension\" \"npm:dev:electron\"",
"dev:electron": "export BUILD_ENV=electron; concurrently \"yarn webpack:extension --watch\" \"yarn webpack:electron --watch\"",
"dev:extension": "export BUILD_ENV=extension; yarn webpack:extension --watch",
"lint": "eslint --ext .ts,.tsx src",
"lint:firefox": "cd dist/extension && web-ext lint",
"lint:prettier": "prettier -c .",
"start": "electron dist/electron/main.js",
"test": "jest --testPathIgnorePatterns visual-regression",
"visual-regression": "./scripts/regression.sh",
"visual-regression:exec": "jest --no-cache visual-regression --runInBand",
"webpack:electron": "webpack --config webpack/webpack.electron.config.js",
"webpack:extension": "webpack --config webpack/webpack.extension.config.js"
},
"bin": "./scripts/cli.js",
"engines": {
"node": ">= 10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,js,md}": [
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"electron": "^8.3.0",
"ws": "^7.3.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@types/chrome": "0.0.112",
"@types/codemirror": "0.0.93",
"@types/d3-scale": "^2.2.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/fast-json-stable-stringify": "^2.0.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^25.2.2",
"@types/jest-environment-puppeteer": "^4.3.1",
"@types/jest-image-snapshot": "^3.1.0",
"@types/nanoid": "^2.1.0",
"@types/puppeteer": "^2.1.0",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router": "^5.1.7",
"@types/react-router-dom": "^5.1.5",
"@types/resize-observer-browser": "^0.1.3",
"@types/semver": "^7.2.0",
"@types/styled-components": "^5.1.0",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@urql/core": "^1.11.8",
"@urql/devtools": "https://pkg.csb.dev/FormidableLabs/urql-devtools-exchange/commit/89b2a7aa/@urql/devtools",
"awesome-typescript-loader": "^5.2.1",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-inline-react-svg": "andyrichardson/babel-plugin-inline-react-svg#refs",
"babel-plugin-styled-components": "^1.10.7",
"bestzip": "^2.1.5",
"clean-webpack-plugin": "^3.0.0",
"codemirror": "^5.53.2",
"codemirror-graphql": "^0.11.6",
"concurrently": "^5.2.0",
"copy-webpack-plugin": "^6.0.1",
"csp-html-webpack-plugin": "^4.0.0",
"css-loader": "^3.5.3",
"d3-scale": "^3.2.1",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.20.0",
"fast-json-stable-stringify": "^2.1.0",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"jest-image-snapshot": "^4.0.0",
"jest-styled-components": "^7.0.2",
"lint-staged": "^10.2.2",
"nanoid": "^3.1.7",
"polished": "^3.6.3",
"prettier": "^2.0.5",
"prism-react-renderer": "^1.1.0",
"puppeteer": "^3.0.4",
"react": "^16.13.1",
"react-cosmos": "5.3.0",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-spring": "^8.0.27",
"semver": "^7.3.2",
"style-loader": "^1.2.1",
"styled-components": "^5.1.0",
"terser-webpack-plugin": "^3.0.1",
"ts-jest": "^26.0.0",
"typescript": "^3.9.2",
"web-ext": "^4.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
}
}