forked from matematikk-mooc/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.31 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
{
"name": "mooc",
"version": "0.1.0",
"description": "Custom JS and CSS frontend for inclusion in [Canvas](http://www.instructure.com/).",
"jest": {
"setupFiles": [
"<rootDir>/test-env-setup.js"
],
"setupTestFrameworkScriptFile": "<rootDir>/jest-setup.js"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"babel-loader": "^9.1.2",
"babel-plugin-handlebars-inline-precompile": "^2.1.1",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.0",
"file-loader": "^6.2.0",
"glob": "^10.2.6",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.3",
"html-webpack-plugin": "^5.5.1",
"less": "^4.1.3",
"less-loader": "^11.1.2",
"less-plugin-autoprefix": "^1.5.1",
"mini-css-extract-plugin": "^2.7.6",
"replace-in-file-webpack-plugin": "^1.0.6",
"string-replace-loader": "^3.1.0",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.85.1",
"webpack-cli": "^5.1.3",
"webpack-config-utils": "^2.3.1",
"webpack-dev-server": "^4.15.0",
"webpack-replace-plugin": "^0.0.4"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/matematikk-mooc/frontend.git"
},
"scripts": {
"buildProduction": "webpack --config webpack.production.config.js --mode production --env timestamp=$(git log origin/master -1 --pretty=format:'%ad' --date=format:'%Y-%m-%dT%H:%M:%S')",
"buildStaging": "webpack --config webpack.staging.config.js --mode production --env timestamp=$(git log origin/staging -1 --pretty=format:'%ad' --date=format:'%Y-%m-%dT%H:%M:%S')",
"buildDevelopment": "webpack --config webpack.development.config.js --mode development --progress",
"serveDevelopment": "webpack-dev-server --config webpack.development.config.js --mode development --open",
"noCache": "webpack --no-cache",
"clean": "rm -rf dist node_modules"
},
"bugs": {
"url": "https://github.com/matematikk-mooc/frontend/issues"
},
"homepage": "https://github.com/matematikk-mooc/frontend#readme",
"directories": {
"doc": "doc",
"test": "test"
},
"author": "",
"license": "ISC",
"dependencies": {
"@vimeo/player": "^2.20.1"
}
}