-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 772 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 772 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
{
"name": "exploit-server",
"version": "1.0.0",
"description": "Server to detect blind injections and other attacks",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index.js",
"build:css": "postcss src/styles/tailwind.css -o public/styles/tailwind.css",
"watch:css": "postcss src/styles/tailwind.css -o public/styles/tailwind.css --watch"
},
"author": "mrunoriginal",
"license": "ISC",
"dependencies": {
"axios": "^1.7.4",
"axios-retry": "^4.5.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"postcss": "^8.4.41",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.4.7"
}
}