-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
86 lines (86 loc) · 2.81 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
{
"name": "dodona",
"private": true,
"scripts": {
"lint": "eslint --ext '.js' --ext '.ts' app/javascript app/assets/javascripts",
"lint:css": "stylelint app/assets/stylesheets",
"test": "jest",
"build:css": "./bin/build-css",
"build:js": "webpack --config ./config/webpack/webpack.config.js",
"build": "yarn build:js",
"typeCheck": "yarn tsc --skipLibCheck --noEmit",
"test:system:coverage:merge": "nyc merge ./coverage/system-js ./coverage/coverage.json"
},
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@codemirror/autocomplete": "^6.16.2",
"@codemirror/commands": "^6.6.0",
"@codemirror/language": "^6.10.2",
"@codemirror/language-data": "^6.5.1",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.3",
"@dodona/papyros": "2.3.5",
"@lezer/common": "^1.2.1",
"@lezer/highlight": "^1.2.0",
"@lezer/lr": "^1.4.1",
"@popperjs/core": "^2.11.8",
"@rails/activestorage": "^7.1.3",
"@rails/ujs": "^7.1.3",
"@replit/codemirror-lang-csharp": "^6.2.0",
"@sentry/browser": "^8.9.2",
"@sentry/webpack-plugin": "^2.18.0",
"@types/bootstrap": "^5.2.10",
"@types/d3": "^7.4.3",
"@types/dragula": "^3.7.5",
"@types/iframe-resizer": "^3.5.13",
"@types/jest": "^27.5.0",
"@types/node-polyglot": "^2.5.0",
"@types/serviceworker": "^0.0.87",
"babel-loader": "^9.1.3",
"babel-plugin-macros": "^3.1.0",
"bootstrap": "5.3.3",
"codemirror-lang-prolog": "^0.1.0",
"codemirror-lang-r": "^0.1.0-2",
"core-js": "^3.37.1",
"d3": "^7.9.0",
"dayjs": "^1.11.11",
"dragula": "^3.7.3",
"flatpickr": "^4.6.13",
"fscreen": "^1.2.0",
"glightbox": "^3.2.0",
"iframe-resizer": "^4.4.2",
"lit": "^3.1.4",
"node-polyglot": "^2.5.0",
"sass": "^1.77.5",
"tippy.js": "^6.3.7",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@open-wc/testing-helpers": "^3.0.1",
"@testing-library/dom": "^9.3.4",
"@testing-library/user-event": "^14.5.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@webcomponents/scoped-custom-element-registry": "^0.0.9",
"babel-plugin-istanbul": "^6.1.1",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-lit": "^1.11.0",
"eslint-plugin-no-jquery": "^2.7.0",
"eslint-plugin-wc": "^2.0.4",
"jest": "^26.6.3",
"jest-junit": "^16.0.0",
"nyc": "^15.1.0",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"ts-jest": "^26.5.6",
"webpack-bundle-analyzer": "^4.10.2"
}
}