This repository has been archived by the owner on Jun 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
112 lines (112 loc) · 3.54 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
111
112
{
"private": true,
"name": "@anontown/client",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "npm run codegen&&webpack -p --mode production&&cp -pR ./public/* ./dist",
"lint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts{,x}'",
"lint:fix": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts{,x}' --fix",
"loc": "sloc --format cli-table ./src",
"apollo:generate": "",
"codegen": "gql-gen --config codegen.yml"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@graphql-codegen/cli": "^1.0.2",
"@graphql-codegen/core": "^1.0.2",
"@graphql-codegen/fragment-matcher": "^1.0.2",
"@graphql-codegen/typescript": "^1.0.2",
"@graphql-codegen/typescript-graphql-files-modules": "^1.0.2",
"@graphql-codegen/typescript-operations": "^1.0.2",
"@graphql-codegen/typescript-react-apollo": "^1.0.2",
"@types/classnames": "^2.2.7",
"@types/crypto-js": "^3.1.43",
"@types/graphql": "^14.0.7",
"@types/material-ui": "^0.21.6",
"@types/query-string": "^6.3.0",
"@types/react": "^16.8.8",
"@types/react-color": "^2.17.0",
"@types/react-dom": "^16.8.3",
"@types/react-helmet": "^5.0.8",
"@types/react-intl": "^2.3.17",
"@types/react-modal": "^3.8.1",
"@types/react-router": "^4.4.5",
"@types/react-router-dom": "^4.3.1",
"@types/react-tabs": "^2.3.1",
"@types/styled-components": "^4.1.8",
"@types/uuid": "^3.4.4",
"apollo": "^2.6.2",
"clean-webpack-plugin": "^2.0.1",
"css-loader": "^2.1.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"sloc": "^0.2.1",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"tslint": "^5.14.0",
"tslint-react": "^3.6.0",
"typescript": "^3.4.3",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"@anontown/schema": "^1.0.0",
"@kgtkr/utils": "^1.0.3",
"@trainline/react-skeletor": "^1.0.2",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link": "^1.2.11",
"apollo-link-error": "^1.1.10",
"apollo-link-http": "^1.5.14",
"apollo-link-state": "^0.4.2",
"apollo-link-ws": "^1.0.17",
"apollo-utilities": "^1.2.1",
"classnames": "^2.2.6",
"core-js": "^3.0.0",
"crypto-js": "^3.1.9-1",
"fp-ts": "^1.16.1",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"immutable": "^4.0.0-rc.9",
"io-ts": "^1.8.5",
"material-ui": "^0.20.2",
"moment": "^2.24.0",
"offline-plugin": "^5.0.6",
"query-string": "^6.4.0",
"react": "^16.8.4",
"react-apollo": "^2.5.2",
"react-apollo-hooks": "^0.4.3",
"react-async-script": "^1.0.0",
"react-autosize-textarea": "^6.0.0",
"react-color": "^2.17.0",
"react-dom": "^16.8.4",
"react-google-recaptcha": "^1.0.5",
"react-helmet": "^5.2.0",
"react-intl": "^2.8.0",
"react-modal": "^3.8.1",
"react-rnd": "^9.1.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-tabs": "^3.0.0",
"react-twitter-embed": "^2.0.7",
"react-use": "^5.10.0",
"remark-breaks": "^1.0.2",
"remark-parse": "^6.0.3",
"rxjs": "^6.4.0",
"styled-components": "^4.2.0",
"subscriptions-transport-ws": "^0.9.16",
"type-zoo": "^3.3.0",
"unified": "^7.1.0",
"uuid": "^3.3.2",
"zen-observable-ts": "^0.8.18"
}
}