This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy pathpackage.json
102 lines (102 loc) · 3.18 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
93
94
95
96
97
98
99
100
101
102
{
"author": "Nick Poulden",
"name": "@origin/graphql",
"version": "0.1.1",
"license": "MIT",
"description": "Origin GraphQL server",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/OriginProtocol/origin/origin-playground"
},
"files": [
"dist",
"src"
],
"scripts": {
"start": "node -r @babel/register server",
"test": "NODE_ENV=test mocha -r @babel/register --file test/setup test",
"test:watch": "NODE_ENV=test mocha -r @babel/register --file test/setup test -w",
"lint": "eslint . && npm run prettier:check",
"prettier": "prettier --write *.js \"src/**/*.js\" \"test/**/*.js\"",
"prettier:check": "prettier -c *.js \"src/**/*.js\" \"test/**/*.js\"",
"backfill_avatar": "node -r @babel/register src/scripts/201904_backfill_avatar.js"
},
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.5.4",
"@origin/auth-client": "^0.1.0",
"@origin/contracts": "^0.8.6",
"@origin/event-cache": "^0.1.0",
"@origin/eventsource": "^0.1.0",
"@origin/ipfs": "^0.1.0",
"@origin/messaging-client": "^0.1.0",
"@origin/mobile-bridge": "^0.1.0",
"@origin/services": "^0.1.0",
"@origin/validator": "^0.1.0",
"@origin/web3-provider": "^0.1.0",
"apollo-cache-inmemory": "^1.6.2",
"apollo-client": "^2.6.3",
"apollo-link": "^1.2.12",
"apollo-link-context": "^1.0.18",
"apollo-link-http": "^1.5.15",
"apollo-link-schema": "^1.2.3",
"apollo-link-ws": "^1.0.18",
"apollo-server": "^2.6.7",
"apollo-server-express": "^2.9.15",
"cross-fetch": "^3.0.4",
"dayjs": "^1.8.14",
"dotenv": "^8.0.0",
"envkey": "^1.2.6",
"express": "^4.17.1",
"express-prom-bundle": "^5.1.5",
"graphql": "^14.4.0",
"graphql-fields": "^2.0.3",
"graphql-subscriptions": "^1.1.0",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.5",
"ipfs-only-hash": "^1.0.2",
"json-stable-stringify": "^1.0.1",
"lodash-es": "^4.17.11",
"mocha": "^7.0.0",
"morgan": "^1.9.1",
"node-fetch": "^2.6.0",
"prettier": "^1.18.2",
"prom-client": "^11.5.3",
"rlp": "^2.2.3",
"subscriptions-transport-ws": "^0.9.16",
"web3": "1.0.0-beta.34"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-transform-runtime",
"@babel/plugin-transform-destructuring",
"@babel/plugin-transform-object-assign",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-class-properties"
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-export-default-from": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.5",
"@babel/plugin-transform-destructuring": "7.9.5",
"@babel/plugin-transform-object-assign": "7.8.3",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@babel/runtime": "7.9.2",
"debug": "4.1.1",
"webpack": "4.41.5"
}
}