-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1 KB
/
package.json
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
{
"name": "sql-injection",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node src/server.js | npx bunyan",
"dev": "DEBUG=knex:query npx nodemon --watch ./src -e js src/server.js | npx bunyan",
"knex": "npx knex --knexfile src/infra/db/connection.js",
"migrate": "npm run knex migrate:latest | npx bunyan",
"seed": "npm run knex seed:run | npx bunyan",
"docker": "npm run migrate && npm run seed && npm run dev",
"attacker": "npx nodemon --watch ./attacker-server attacker-server/app.js | npx bunyan"
},
"dependencies": {
"bunyan": "^1.8.15",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"express": "~4.16.1",
"express-session": "^1.17.3",
"http-errors": "~1.6.3",
"knex": "^2.4.2",
"morgan": "~1.9.1",
"mysql2": "^3.2.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pug": "2.0.0-beta11",
"qs": "6.10.2"
},
"devDependencies": {
"nodemon": "^2.0.21"
}
}