-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.01 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.01 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": "@glenstack/api",
"private": true,
"main": "dist/worker.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --outfile=dist/worker.js --format=esm --minify --sourcemap --define:VERSION=\\\"$(git rev-parse HEAD)\\\"",
"lint": "eslint --ignore-path .gitignore --max-warnings=0 'src/**/*'",
"check-types": "tsc",
"prettier": "prettier --config ../../.prettierrc --ignore-path .gitignore '**/*.(js|ts|json|md)'",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"precommit": "doppler run --command='npm run check-types && lint-staged && npm run build && npm run coverage'",
"validate": "concurrently 'npm:check-types' 'npm:check-format' 'npm:lint' 'npm:build' 'npm:coverage'",
"test": "doppler run -- jest",
"coverage": "doppler run -- npm run test -- --coverage",
"test:watch": "doppler run -- npm run test -- -o --watch",
"start": "doppler run -- wrangler dev",
"start:demo": "DEMO_PROJECT_ID='302914045660365323' doppler run -- ts-node src/data/demo_server.ts",
"start:https": "doppler run -- wrangler dev --local-protocol https"
},
"devDependencies": {
"@cloudflare/workers-types": "2.2.2",
"@cloudflare/wrangler": "1.16.1",
"@types/jest": "26.0.23",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"apollo-server": "2.24.0",
"concurrently": "6.1.0",
"esbuild": "0.12.0",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"jest": "26.6.3",
"lint-staged": "11.0.0",
"prettier": "2.3.0",
"ts-jest": "26.5.6",
"ts-node": "9.1.1",
"typescript": "4.2.4"
},
"dependencies": {
"@giraphql/core": "2.6.0",
"@glenstack/cf-workers-graphql": "1.0.4",
"@graphql-tools/schema": "6.0.18",
"await-to-js": "3.0.0",
"cross-fetch": "3.1.5",
"faunadb": "4.2.0",
"graphql": "15.3.0",
"graphql-scalars": "^1.10.0",
"graphql-tag": "2.11.0",
"toucan-js": "2.5.0-beta.1",
"uuid": "8.3.2"
}
}