-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
114 lines (114 loc) · 3.52 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
113
114
{
"name": "rumors-site",
"version": "0.0.1",
"description": "Rumors list / creation UI, with server-side rendering",
"main": "index.js",
"author": "MrOrz",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "cross-env TZ=UTC jest",
"start": "node server.js",
"i18n:extract": "ttag update i18n/zh_TW.po ./components ./pages ./constants ./lib",
"i18n:validate": "ttag validate i18n/zh_TW.po",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"typecheck": "tsc",
"typegen": "graphql-codegen",
"posttypegen": "eslint --fix typegen"
},
"dependencies": {
"@apollo/react-hooks": "^3.0.1",
"@apollo/react-ssr": "^3.0.1",
"@hocuspocus/provider": "^2.0.3",
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.61",
"accepts": "^1.3.7",
"apollo-boost": "^0.4.4",
"apollo-link": "^1.2.13",
"apollo-link-batch-http": "^1.2.13",
"apollo-link-error": "^1.1.12",
"clsx": "^1.0.4",
"cookie": "^0.4.0",
"copy-to-clipboard": "^3.3.1",
"core-js": "^3.6.5",
"d3": "^5.16.0",
"date-fns": "^2.0.1",
"dotenv": "^8.0.0",
"emoji-mart": "^3.0.0",
"feed": "^4.1.0",
"graphql": "^14.4.2",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^3.0.1",
"json-url": "^2.6.0",
"linkifyjs": "^4.1.3",
"lodash": "^4.17.19",
"marked": "^4.1.1",
"next": "^9.3.2",
"next-apollo": "^3.1.5",
"pm2": "^4.2.3",
"prosemirror-keymap": "^1.2.2",
"prosemirror-model": "^1.13.1",
"prosemirror-schema-basic": "^1.2.2",
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.30.2",
"react": "^16.8.6",
"react-calendar-heatmap": "^1.8.1",
"react-dom": "^16.8.6",
"react-peeps": "^0.1.10",
"react-spring": "^8.0.27",
"react-virtualized-auto-sizer": "^1.0.2",
"rollbar": "^2.14.4",
"ttag": "^1.7.22",
"use-prosemirror": "^1.3.0",
"y-prosemirror": "^1.2.1",
"yjs": "^13.5.29"
},
"devDependencies": {
"@apollo/react-testing": "^3.0.1",
"@babel/core": "^7.9.0",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@graphql-codegen/cli": "^2.16.4",
"@graphql-codegen/client-preset": "^1.2.6",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-storyshots": "^6.4.22",
"@storybook/addon-storysource": "^6.4.22",
"@storybook/addons": "^6.4.22",
"@storybook/react": "^6.4.22",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-jest": "^26.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-ttag": "^1.7.30",
"cross-env": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^4.0.4",
"eslint-plugin-storybook": "^0.5.11",
"file-loader": "^6.2.0",
"jest": "^26.0.0",
"mockdate": "^3.0.2",
"prettier": "=1.18.2",
"react-test-renderer": "^16.8.6",
"ttag-cli": "^1.8.4",
"typescript": "^4.9.4",
"url-loader": "^3.0.0"
},
"engines": {
"node": ">= 16.15.0"
}
}