This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.72 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
{
"name": "orcalti",
"version": "1.0.0",
"description": "NPM dependencies for the ORCA.NRW-LTI ILIAS/Moodle plugin",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack.config.development.js --env platform=moodle",
"build-stage-moodle": "webpack --config webpack.config.staging.js --env platform=moodle",
"build-prod-moodle": "webpack --config webpack.config.production.js --env platform=moodle",
"build-stage-ilias": "webpack --config webpack.config.staging.js --env platform=ilias",
"build-prod-ilias": "webpack --config webpack.config.production.js --env platform=ilias"
},
"author": "ORCA.NRW",
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.6.0",
"cssnano": "^5.0.17",
"eslint": "^7.32.0",
"eslint-loader": "^4.0.2",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"node-sass": "^7.0.1",
"postcss-loader": "^6.2.1",
"postcss-normalize": "^10.0.1",
"postcss-prefix-selector": "^1.15.0",
"postcss-preset-env": "^7.3.1",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"vue-loader": "^17.0.0",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"bootstrap": "^5.1.3",
"core-js": "^3.21.0",
"regenerator-runtime": "^0.13.9",
"vue": "^3.2.30",
"vue-i18n": "^9.1.9"
}
}