-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 KB
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": "parsons-prakhar",
"version": "1.0.4",
"description": "This is a server side rendered implementation of OpenDSA/Parsons. This implementation consumes the [Parsons Problem Input Format (PIF)](https://docs.google.com/document/d/1ZzEgS4_2SyS88fhWVp0041KmfWFnXBKgMWmPEDI7chw/edit?usp=sharing) an extension of [PEML](https://cssplice.org/peml/).",
"main": "index.js",
"files": [
"dist",
"server/helpers/parsePIF.js",
"server/helpers/logger.js",
"index.js",
"README.md"
],
"scripts": {
"build": "webpack",
"start": "node server/index.js",
"dev": "webpack --watch & nodemon server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"css-loader": "7.1.2",
"dotenv": "17.2.1",
"express": "5.1.0",
"form-data": "^4.0.5",
"jquery": "3.7.1",
"jsdom": "26.0.0",
"less": "4.3.0",
"multer": "1.4.5-lts.2",
"nodemon": "3.1.10",
"restructured": "0.0.11",
"style-loader": "4.0.0"
},
"devDependencies": {
"@babel/core": "7.26.10",
"@babel/preset-env": "7.26.9",
"babel-loader": "10.0.0",
"mini-css-extract-plugin": "2.9.4",
"webpack": "5.99.5",
"webpack-cli": "6.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenDSA/Parsons.git"
},
"bugs": {
"url": "https://github.com/OpenDSA/Parsons/issues"
},
"homepage": "https://github.com/OpenDSA/Parsons#readme"
}