-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
133 lines (133 loc) · 3.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "jellyposter",
"private": true,
"engines": {
"node": "14.x"
},
"dependencies": {
"@aeaton/prosemirror-placeholder": "^0.1.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "7.8.7",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.13",
"@emotion/core": "^10.0.22",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/react-fontawesome": "^0.1.7",
"@rails/actioncable": "^6.0.0",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@rails/webpacker": "^5.2.1",
"@reduxjs/toolkit": "^1.2.3",
"@uppy/core": "^1.7.1",
"@uppy/drag-drop": "^1.4.2",
"@uppy/react": "^1.4.2",
"@uppy/xhr-upload": "^1.4.2",
"animate.css": "^3.7.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bootstrap": "^4.4",
"classnames": "^2.2.6",
"crel": "^4.2.0",
"date-fns": "^2.8.1",
"es6-promise": "^4.2.8",
"html-react-parser": "^0.13.0",
"immer": "^8.0.1",
"jquery": "3.5.1",
"katex": "^0.12.0",
"lodash": "4.17.19",
"popper.js": "^1.16.0",
"prop-types": "^15.7.2",
"prosemirror-commands": "1.1.4",
"prosemirror-dev-tools": "^2.1.1",
"prosemirror-dropcursor": "^1.3.2",
"prosemirror-example-setup": "^1.1.2",
"prosemirror-gapcursor": "^1.1.3",
"prosemirror-inputrules": "^1.1.2",
"prosemirror-model": "1.9.1",
"prosemirror-state": "1.3.3",
"prosemirror-tables": "^1.0.0",
"prosemirror-view": "1.14.7",
"react": "^17.0.1",
"react-autosuggest": "10.0.1",
"react-dnd": "5.0.0",
"react-dnd-html5-backend": "^3.0.2",
"react-dom": "^17.0.1",
"react-modal": "^3.11.1",
"react-paginate": "^6.5.0",
"react-redux": "^7.1.3",
"react-tag-input": "^6.4.2",
"react_ujs": "^2.6.0",
"sanitize-html": "^1.21.1",
"serialize-javascript": "^3.1.0",
"styled-components": "^4.4.0",
"superagent": "^5.1.0",
"turbolinks": "^5.2.0",
"typescript": "^4.1.3",
"whatwg-fetch": "^3.0.0"
},
"version": "0.1.0",
"devDependencies": {
"@babel/compat-data": "~7.8.0",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@types/actioncable": "^5.2.3",
"@types/classnames": "^2.2.11",
"@types/prosemirror-state": "^1.2.6",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-redux": "^7.1.16",
"@types/sanitize-html": "^1.27.1",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-eslint": "10.x",
"babel-loader": "^8.1.0",
"cypress": "5.5",
"eslint": "^7.19.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-app": "^5.1.0",
"eslint-plugin-flowtype": "3.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4",
"webpack-dev-server": "^3.11.0"
},
"main": "index.js",
"author": "Denny Luan <[email protected]>",
"license": "MIT",
"eslintConfig": {
"extends": [
"react-app",
"plugin:jsx-a11y/recommended",
"plugin:prettier/recommended"
],
"plugins": [
"jsx-a11y"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint-staged",
"pre-push": "yarn run lint"
}
},
"lint-staged": {
"*.js": [
"yarn run lint:fix"
]
},
"scripts": {
"lint": "eslint app spec",
"lint:fix": "eslint --fix",
"test": "cypress run",
"test:interactive": "cypress open"
}
}