-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1 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
{
"name": "sysinfoapi",
"version": "2.0.0",
"description": "Small API written in Node to retrieve system hardware information.",
"main": "api.js",
"scripts": {
"start": "concurrently \"npm run server\" \"npm run frontend\"",
"server": "pm2 update && pm2 start api.js --name SysInfoAPI --log api.log --watch",
"frontend": "npm run --prefix frontend start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheConsciousness/SysInfoAPI.git"
},
"author": "TheConsciousness",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheConsciousness/SysInfoAPI/issues"
},
"homepage": "https://github.com/TheConsciousness/SysInfoAPI#readme",
"dependencies": {
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"node-disk-info": "^1.3.0",
"nodemon": "^3.0.1",
"pm2": "^5.3.0"
},
"devDependencies": {
"concurrently": "^8.2.0",
"eslint": "^8.47.0",
"eslint-plugin-react": "^7.33.2"
}
}