-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "earthstar-graphql",
"license": "AGPL-3.0",
"version": "6.1.1",
"dependencies": {
"cross-fetch": "^3.0.5",
"graphql-type-json": "0.3.2",
"js-base64": "3.2.4"
},
"peerDependencies": {
"earthstar": "5.2.3",
"graphql": "^15.3.0"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/earthstar-graphql.esm.js",
"files": [
"dist"
],
"author": "Sam Gwilym",
"scripts": {
"test": "jest",
"build": "tsdx build",
"prepare": "tsdx build",
"dev": "ts-node-dev --respawn --no-notify --transpile-only -P server.tsconfig.json ./src/scripts/start-server.ts --ignore=built",
"server": "ts-node --transpile-only -P server.tsconfig.json ./src/scripts/start-server.ts --ignore=built",
"typegen": "yarn run ts-graphql-plugin typegen",
"validate": "yarn run ts-graphql-plugin validate --exitOnWarn"
},
"devDependencies": {
"earthstar": "5.2.3",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.5",
"@types/js-base64": "^3.0.0",
"@types/node": "^14.0.24",
"apollo-server": "2.16.0",
"graphql": "^15.3.0",
"jest": "^26.1.0",
"msw": "^0.20.1",
"prettier": "^2.0.5",
"ts-graphql-plugin": "^1.12.0",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.52",
"tsdx": "^0.13.2",
"typescript": "^3.9.7"
}
}