-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.44 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
{
"name": "@bishwenduk029/fringe",
"version": "0.1.3",
"description": "Edge rendered React and GraphQL",
"author": "Bishwendu Kundu",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"bin": {
"fringe": "dist/cli/index.js"
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"prebuild": "rm -rf dist",
"build": "yarn prebuild && node ./scripts/build.js",
"types": "tsc",
"dev": "NODE_ENV=development SKIP_EMPTY=1 nodemon --watch src --watch scripts/build.js --ext js,jsx,ts,tsx ./scripts/build.js",
"debug": "node --inspect test/fixtures/index.js",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\"",
"test": "jest",
"posttest": "kacl lint",
"prepack": "yarn run build && yarn run types",
"preversion": "kacl prerelease",
"version": "kacl release && git add CHANGELOG.md",
"postversion": "git push --follow-tags && gh-release"
},
"dependencies": {
"@types/node-dir": "^0.0.33",
"cac": "^6.7.1",
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"connection-string": "^4.3.2",
"esbuild": "0.8.43",
"graphql": "^15.4.0",
"handy-redis": "^2.2.1",
"node-dir": "^0.1.17",
"node-fetch": "^2.6.1",
"pino": "^6.11.1",
"redis": "^3.0.2",
"serialize-javascript": "^5.0.1",
"ts-primitives": "^3.2.0"
},
"peerDependencies": {
"@types/node-dir": "^0.0.33",
"cac": "^6.7.1",
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"connection-string": "^4.3.2",
"esbuild": "0.8.43",
"graphql": "^15.4.0",
"handy-redis": "^2.2.1",
"node-dir": "^0.1.17",
"node-fetch": "^2.6.1",
"pino": "^6.11.1",
"redis": "^3.0.2"
},
"devDependencies": {
"@testing-library/react": "^11.1.0",
"@types/jest": "^26.0.20",
"babel-jest": "^26.2.2",
"eslint": "^7.14.0",
"gh-release": "^5.0.0",
"jest": "^26.2.2",
"kacl": "^1.0.0",
"nodemon": "^2.0.7",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"workspaces": [
"./packages/create-fringe-app",
"./packages/template"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bishwenduk029/fringe.git"
},
"keywords": [
"edge-computing",
"serverless",
"functions",
"serverless-graphql",
"react"
],
"bugs": {
"url": "https://github.com/bishwenduk029/fringe/issues"
},
"homepage": "https://github.com/bishwenduk029/fringe#readme"
}