-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "digitalbonesbox",
"version": "1.0.0",
"type": "module",
"description": "This project is a Web App project aims to convert an existing PowerPoint-based educational tool into an interactive, mobile-friendly web application.",
"main": "server.js",
"scripts": {
"test": "jest",
"start": "concurrently \"npm run start:api\" \"npm run start:web\"",
"start:api": "npm start --prefix boneset-api",
"start:web": "http-server -c-1 -o /templates/boneset.html",
"dev": "concurrently \"npm run dev:api\" \"npm run start:web\"",
"dev:api": "npm run dev --prefix boneset-api",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.16.0",
"body-parser": "^1.20.5",
"cors": "^2.8.5",
"express": "^4.22.2",
"simple-git": "^3.36.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"babel-jest": "^29.7.0",
"concurrently": "^9.2.1",
"eslint": "^9.24.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0"
},
"directories": {
"test": "templates/tests"
}
}