forked from kriasoft/graphql-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.12 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.12 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
{
"name": "proxy",
"version": "0.0.0",
"license": "MIT",
"author": "Kriasoft (https://github.com/kriasoft)",
"scripts": {
"build": "webpack"
},
"dependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@cloudflare/workers-types": "^2.0.0",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"typescript": "^3.9.7",
"webpack": "5.0.0-beta.28",
"webpack-cli": "webpack/webpack-cli#workspace=webpack-cli&commit=86dfe514a5b5de38f631a02e5211d10f32c536b9"
},
"private": true,
"eslintConfig": {
"ignorePatterns": "/dist/",
"overrides": [
{
"files": [
"src/**.ts"
],
"env": {
"worker": true,
"node": false
}
}
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false,
"loose": true,
"useBuiltIns": "usage",
"corejs": 3,
"targets": {
"browsers": "last 1 Chrome versions"
}
}
],
"@babel/preset-typescript"
]
}
}