-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 953 Bytes
/
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
{
"name": "fringe-workers",
"version": "1.0.0",
"description": "Cloudflare worker for running GraphQL queries on Cloudflare EDGE",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "NODE_ENV=development npm run build",
"format": "prettier --write '**/*.{ts,js,css,json,md}'"
},
"author": "author",
"license": "MIT OR Apache-2.0",
"devDependencies": {
"@cloudflare/workers-types": "^2.0.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.14.41",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.16.0",
"babel-loader": "^8.2.2",
"chai": "^4.2.0",
"graphql-tag": "^2.11.0",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"service-worker-mock": "^2.0.5",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"graphql": "^15.5.0"
}
}