-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.36 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
{
"name": "sustoj",
"version": "0.0.0",
"description": "The worker process of SUSTOJ",
"main": "build/index.js",
"scripts": {
"start": "node build/index.js",
"tsc": "tsc",
"build": "npm run clean && parcel build index.html && tsc",
"dev": "parcel index.html",
"dev2": "ts-node-dev src/index.ts",
"test": "eslint .",
"clean": "del-cli dist/* !*.ini",
"report": "parcel build index.html --reporter @parcel/reporter-bundle-analyzer"
},
"engines": {
"browsers": "Chrome 69"
},
"targets": {
"main": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenSUST/sustoj.git"
},
"keywords": [
"oj",
"onlinejudge",
"sust",
"nodejs"
],
"author": "Shirasawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenSUST/sustoj/issues"
},
"homepage": "https://github.com/OpenSUST/sustoj#readme",
"devDependencies": {
"@types/jsonwebtoken": "^8.5.1",
"@types/koa": "^2.13.3",
"@types/koa-static": "^4.0.1",
"@types/lzma-native": "^4.0.0",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/react-router-dom": "^5.1.7",
"@types/socket.io": "^2.1.13",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"@parcel/reporter-bundle-analyzer": "^2.0.0-nightly.2312",
"eslint": "^7.27.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"ts-node-dev": "^1.1.6"
},
"dependencies": {
"@monaco-editor/react": "^4.1.3",
"del-cli": "^3.0.1",
"filesize": "^6.3.0",
"jsonwebtoken": "^8.5.1",
"katex": "^0.13.11",
"koa": "^2.13.1",
"koa-static": "^5.0.0",
"lzma-native": "^8.0.1",
"papercss": "^1.8.2",
"parcel": "^2.0.0-nightly.688",
"react": "^17.0.2",
"react-countdown": "^2.3.2",
"react-dom": "^17.0.2",
"react-markdown": "^6.0.2",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^15.4.3",
"rehype-katex": "^5.0.0",
"remark-gfm": "^1.0.0",
"remark-math": "^4.0.0",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2",
"timeago-react": "^3.0.2",
"typescript": "^4.3.2"
}
}