-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.17 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.17 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "vigil",
"version": "0.8.0",
"description": "A dashboard application that allows users to define custom endpoints for widgets such as server health & statistics. Users also have access to collection of custom widgets that create a complete user experience.",
"main": "server/app.ts",
"scripts": {
"predev": "kill-port 3000",
"dev": "concurrently --kill-others-on-fail \"webpack watch\" \"npx nodemon --signal SIGTERM --watch server --exec tsx server/app.ts\"",
"build": "webpack",
"start": "node dist/app.js",
"heroku-postbuild": "tsc && webpack",
"pretest": "eslint ./server --fix",
"test": "echo \"All tests completed\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/CarterIrish/Vigil.git"
},
"keywords": [],
"author": "Carter Irish",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/CarterIrish/Vigil/issues"
},
"homepage": "https://github.com/CarterIrish/Vigil#readme",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@eslint/js": "^10.0.1",
"@types/bcrypt": "^6.0.0",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/serve-favicon": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"babel-loader": "^10.1.1",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"kill-port": "^2.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@dnd-kit/react": "^0.4.0",
"bcrypt": "^6.0.0",
"compression": "^1.8.1",
"connect-redis": "^9.0.0",
"dotenv": "^17.4.0",
"express": "^5.2.1",
"express-handlebars": "^9.0.1",
"express-session": "^1.19.0",
"helmet": "^8.1.0",
"mongoose": "^9.4.1",
"redis": "^5.11.0",
"serve-favicon": "^2.5.1",
"underscore": "^1.13.8"
}
}