-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 992 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 992 Bytes
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
{
"name": "algorithm-performance-analyzer",
"version": "1.0.0",
"description": "A web-based application that empirically measures and visualizes the real-world execution time of classical algorithms",
"main": "server.js",
"scripts": {
"server": "node backend/server.js",
"server:dev": "nodemon backend/server.js",
"client": "cd client && npm run dev",
"client:build": "cd client && npm run build",
"client:install": "cd client && npm install",
"dev": "concurrently \"npm run server:dev\" \"npm run client\"",
"build": "npm run client:build",
"start": "NODE_ENV=production node backend/server.js",
"install:all": "npm install && npm run client:install"
},
"keywords": [
"algorithms",
"performance",
"benchmarking",
"visualization"
],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5"
},
"devDependencies": {
"nodemon": "^3.0.1",
"concurrently": "^8.2.2"
}
}