-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.67 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
103
104
105
106
107
108
109
110
{
"private": true,
"name": "sunrise-social",
"description": "a Scuttlebutt social networking app",
"version": "0.0.0",
"author": "Mikey Williams",
"repository": "https://github.com/ahdinosaur/sunrise-social",
"license": "MPL-2.0",
"main": "dist/main.js",
"scripts": {
"dev:graphql-codegen": "yarn build:graphql-codegen --watch",
"dev:webpack": "yarn build:webpack --mode development --watch",
"dev:start": "electronmon .",
"dev": "concurrently yarn:dev:*",
"package": "electron-builder ...",
"build:graphql-codegen": "graphql-codegen --config graphql-codegen.yml",
"build:webpack": "webpack --config webpack/webpack.config.js",
"build": "yarn build:graphql-codegen && yarn build:webpack",
"start": "electron .",
"types": "tsc --noEmit -p tsconfig.json",
"lint": "eslint --cache .",
"format:prettier": "prettier --write .",
"format:eslint": "eslint --fix .",
"format": "yarn format:prettier && yarn format:eslint",
"prepare:electron": "electron-builder install-app-deps",
"prepare:graphql-codegen": "graphql-codegen --config graphql-codegen.yml",
"prepare:husky": "husky install",
"prepare": "yarn prepare:electron && yarn prepare:husky"
},
"electronmon": {
"patterns": [
"!src/**",
"!webpack/**"
]
},
"dependencies": {
"@apollo/client": "^3.3.19",
"@chakra-ui/react": "^1.6.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@types/lodash": "^4.14.170",
"apollo-server": "^2.25.0",
"babel-loader": "^8.2.2",
"chloride": "^2.4.1",
"concurrently": "^6.2.0",
"constate": "^3.2.0",
"electron-devtools-installer": "^3.2.0",
"framer-motion": "^4",
"graphql": "^15.5.0",
"graphql-transport-electron": "^2.0.2",
"jabber": "^1.2.2",
"lodash": "^4.17.21",
"pull-stream": "^3.6.14",
"pull-stream-to-async-iterator": "^1.0.2",
"secret-stack": "^6.4.0",
"ssb-blobs": "^2.0.1",
"ssb-caps": "^1.1.0",
"ssb-config": "^3.4.5",
"ssb-conn": "^4.0.1",
"ssb-db2": "^2.1.2",
"ssb-deweird": "^1.0.0",
"ssb-friends": "^4.4.5",
"ssb-keys": "^8.1.0",
"ssb-lan": "^1.0.0",
"ssb-master": "^1.0.3",
"ssb-ref": "^2.14.3",
"ssb-replicate": "^1.3.3",
"ssb-serve-blobs": "^2.6.0",
"ssb-threads": "^8.0.0",
"ssb-typescript": "^2.5.0",
"ssb-uri2": "^1.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "1.21.5",
"@graphql-codegen/introspection": "1.18.2",
"@graphql-codegen/typescript": "1.22.1",
"@graphql-codegen/typescript-graphql-files-modules": "^1.18.1",
"@graphql-codegen/typescript-operations": "1.18.0",
"@graphql-codegen/typescript-react-apollo": "2.2.5",
"@graphql-codegen/typescript-resolvers": "^1.19.2",
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/parser": "^4.26.0",
"@vercel/webpack-asset-relocator-loader": "^1.4.1",
"electron": "^13.0.1",
"electron-builder": "^22.10.5",
"electronmon": "^2.0.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
}
}