-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.42 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "bombay-server",
"version": "0.2.0",
"private": true,
"contributer": {
"name": "Michael C Riehle",
"email": "aikimcr@gmail.com"
},
"scripts": {
"start": "./bin/www",
"start:debug": "node --inspect-brk=127.0.0.1:3002 ./bin/www",
"test": "mocha --require test/lib/hooks.js --reporter list",
"test:watch": "mocha --require test/lib/hooks.js --watch --reporter list",
"test:debug": "mocha --inspect-brk=127.0.0.1:3003 --require test/lib/hooks.js --watch --reporter list --timeout 10000",
"eslint": "eslint `pwd`",
"eslint:fix": "eslint --fix `pwd`"
},
"dependencies": {
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"debug": "^2.6.9",
"express": "^4.18.1",
"express-session": "^1.17.3",
"http-errors": "^1.6.3",
"jsonwebtoken": "^8.5.1",
"knex": "^2.3.0",
"morgan": "^1.9.1",
"passport": ">=0.6.0",
"passport-jwt": ">=4.0.0",
"passport-local": ">=1.0.0",
"sqlite3": "^5.0.10"
},
"devDependencies": {
"@faker-js/faker": ">=7.4.0",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"grunt": "^1.5.3",
"mocha": "^10.0.0",
"should": "^13.2.3",
"sinon": "^14.0.0",
"supertest": "^6.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/aikimcr/bombay_server.git"
}
}