-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
88 lines (88 loc) · 2.86 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
88
{
"name": "materia-widget-development-kit",
"description": "Materia Widget Development Kit (MWDK) is a local dev environment for quickly building Materia Widgets.",
"license": "AGPL-3.0",
"homepage": "https://ucfopen.github.io/Materia-Docs/",
"version": "3.0.2",
"author": "University of Central Florida, Center for Distributed Learning",
"scripts": {
"build": "webpack",
"mwdk-start": "./bin/mwdk-start.js",
"mwdk-build-prod": "./bin/mwdk-build-prod.js",
"mwdk-build-dev": "./bin/mwdk-build-dev.js",
"test": "echo 'No tests yet'",
"start": "env TEST_MWDK=true node ./express.js --mode=development",
"postinstall": "yarn build",
"prettier:run": "prettier --write 'src/*.js' --write 'assets/**/*.{js,css}' --write '*.js'",
"clientAssets:link": "cd ../materia-server-client-assets && yarn link && cd - && yarn link materia-server-client-assets"
},
"bin": {
"mwdk-start": "./bin/mwdk-start.js",
"mwdk-build-prod": "./bin/mwdk-build-prod.js",
"mwdk-build-dev": "./bin/mwdk-build-dev.js"
},
"materia": {
"cleanName": "MWDK"
},
"dependencies": {
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"add-asset-html-webpack-plugin": "^6.0.0",
"angular-mocks": "1.8.3",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"babel-plugin-angularjs-annotate": "^0.10.0",
"clean-webpack-plugin": "^4.0.0",
"coffee-loader": "^4.0.0",
"coffeescript": "^2.4.1",
"copy-webpack-plugin": "^11.0.0",
"cors": "^2.8.5",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"file-loader": "^6.2.0",
"hbs": "^4.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"materia-widget-dependencies": "0.3.0",
"mini-css-extract-plugin": "^2.7.2",
"npm-check-updates": "^16.10.9",
"path": "^0.12.7",
"postcss": "^8.4.21",
"postcss-loader": "7.3.3",
"postcss-preset-env": "^9.1.3",
"postcss-scss": "^4.0.8",
"prettier": "^3.0.3",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.0",
"sass": "^1.57.1",
"sass-loader": "^13.3.2",
"sharp": "^0.32.1",
"shelljs": "^0.8.5",
"showdown": "^2.1.0",
"string-replace-loader": "^3.1.0",
"style-loader": "^3.3.3",
"uuid": "^9.0.1",
"wait-until-promise": "^1.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-node-externals": "^3.0.0",
"webpack-sources": "^3.2.3",
"webpack-strip-block": "^0.3.0",
"whatwg-fetch": "^3.6.19",
"yamljs": "^0.3.0",
"zip-webpack-plugin": "^4.0.1"
},
"prettier": {
"printWidth": 100,
"semi": false,
"useTabs": true,
"singleQuote": true
}
}