-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
87 lines (87 loc) · 2.57 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
{
"name": "@dodona/papyros",
"version": "2.3.7",
"private": false,
"homepage": ".",
"devDependencies": {
"@types/escape-html": "^1.0.3",
"@types/i18n-js": "^3.8.9",
"@types/jest": "^29.5.10",
"@types/serviceworker": "^0.0.89",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"autoprefixer": "^10.4.16",
"css-loader": "^7.1.2",
"eslint": "^8.52.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^27.6.0",
"i18n-extract": "^0.6.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.31",
"postcss-import": "^16.0.0",
"postcss-loader": "^8.0.0",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.5",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-jest-mock-import-meta": "^1.1.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@codemirror/autocomplete": "^6.11.1",
"@codemirror/commands": "^6.3.1",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/lang-python": "^6.1.3",
"@codemirror/language": "^6.9.3",
"@codemirror/lint": "^6.4.2",
"@codemirror/search": "^6.5.4",
"@codemirror/state": "^6.3.2",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.28.0",
"@dodona/trace-component": "1.2.1",
"@lezer/common": "^1.1.0",
"codemirror-readonly-ranges": "^0.1.0-alpha.2",
"comlink": "^4.4.1",
"comsync": "^0.0.9",
"escape-html": "^1.0.3",
"file-loader": "^6.2.0",
"i18n-js": "4.4.3",
"pyodide": "^0.22.0",
"pyodide-worker-runner": "1.4.0",
"sync-message": "^0.0.12"
},
"scripts": {
"start": "webpack serve --mode development",
"setup": "bash scripts/setup.sh",
"build:app": "bash scripts/build.sh development",
"build:library": "bash scripts/build_library.sh",
"test": "jest",
"lint": "eslint --ext '.js' --ext '.ts' src",
"validate:translations": "node scripts/ValidateTranslations.js"
},
"description": "Scratchpad for multiple programming languages in the browser.",
"repository": {
"type": "git",
"url": "git+https://github.com/dodona-edu/papyros.git"
},
"keywords": [
"programming",
"scratchpad",
"Dodona",
"Python",
"Pyodide"
],
"author": "Winnie De Ridder",
"license": "MIT",
"bugs": {
"url": "https://github.com/dodona-edu/papyros/issues"
},
"main": "./dist/Library.js",
"types": "./dist/Library.d.ts"
}