This repository was archived by the owner on Jan 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.22 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.22 KB
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
{
"private": true,
"name": "xmc",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
"build": "yarn run build-semantic && preact build --no-prerender --no-service-worker",
"serve": "yarn run build && preact serve",
"dev": "yarn run build-semantic && preact watch --port 8082",
"lint": "eslint src",
"format": "prettier-eslint --write 'src/**/*.js'",
"build-semantic": "cd src/semantic && gulp build-css build-assets",
"watch-semantic": "cd src/semantic && yarn run build-semantic && gulp watch"
},
"eslintConfig": {
"extends": [
"eslint-config-xo",
"xo-react"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"settings": {
"react": {
"pragma": "h"
}
},
"rules": {
"object-curly-spacing": [
2,
"always"
],
"no-unused-vars": [
2,
{
"varsIgnorePattern": "^h$"
}
],
"linebreak-style": [
2,
"unix"
],
"react/prop-types": 0,
"react/jsx-pascal-case": 0
},
"env": {
"browser": true
}
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"copy-webpack-plugin": "^4.4.1",
"eslint": "^4.9.0",
"eslint-config-xo": "^0.20.1",
"eslint-config-xo-react": "^0.16.0",
"eslint-plugin-react": "^7.7.0",
"if-env": "^1.0.0",
"preact-cli": "^2.0.1",
"preact-cli-sw-precache": "^1.0.3",
"prettier-eslint": "^8.8.1",
"prettier-eslint-cli": "^4.7.1",
"semantic-ui": "^2.3.3"
},
"dependencies": {
"asciimath-to-latex": "^0.3.2",
"jwt-decode": "^2.2.0",
"katex": "^0.10.0-beta",
"markdown-it": "^8.4.1",
"monaco-editor": "^0.10.1",
"preact": "^8.2.6",
"preact-compat": "^3.17.0",
"preact-helmet": "^4.0.0-alpha-3",
"preact-i18n": "^1.2.2",
"preact-redux": "^2.0.3",
"promise-mutex": "^0.1.1",
"react-ionicons": "^2.1.6",
"react-jsx-parser": "^1.3.0",
"react-monaco-editor": "^0.13.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"semantic-ui-react": "^0.78.2",
"sha.js": "^2.4.10"
}
}