forked from planetary-social/planetary-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.88 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
{
"name": "planetary-pub2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "pm2 start pm2.config.js",
"stop": "pm2 stop pm2.config.js",
"dev": "NODE_ENV=development node index.js",
"test": "npm run test:raw && npm run lint",
"test:raw": "NODE_ENV=test tape test/**/*.test.js | tap-arc",
"sync": "node src/ssb-sync.js",
"lint": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planetary-social/planetary-pub2.git"
},
"author": "Cherese Eriepa",
"license": "MIT",
"bugs": {
"url": "https://github.com/planetary-social/planetary-pub2/issues"
},
"homepage": "https://github.com/planetary-social/planetary-pub2#readme",
"dependencies": {
"apollo-server-core": "^3.10.2",
"apollo-server-express": "^3.11.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"graphql": "^15.8.0",
"pm2": "^5.2.2",
"pull-flatmap": "^0.0.1",
"pull-paramap": "^1.2.2",
"pull-stream": "^3.6.14",
"ssb-about-self": "^1.1.0",
"ssb-blobs": "^2.0.1",
"ssb-box": "^1.0.1",
"ssb-caps": "^1.1.0",
"ssb-config": "^3.4.6",
"ssb-conn": "^6.0.3",
"ssb-db2": "^6.2.6",
"ssb-ebt": "^9.1.0",
"ssb-friends": "^5.1.7",
"ssb-lan": "^1.2.3",
"ssb-replication-scheduler": "^2.0.5",
"ssb-room-client": "^2.0.2",
"ssb-serve-blobs": "^3.1.1",
"ssb-threads": "^10.1.1"
},
"devDependencies": {
"@apollo/client": "^3.7.1",
"apollo-server-integration-testing": "^3.0.0",
"esm": "^3.2.25",
"husky": "^7.0.4",
"standard": "^17.0.0",
"tap-arc": "^0.3.5",
"tape": "^5.6.1"
},
"resolutions": {
"apollo-server-integration-testing/apollo-server-core": "^3.6.1",
"apollo-server-integration-testing/apollo-server-express": "^3.6.1"
},
"standard": {
"ignore": [
"print-key.js"
]
}
}