-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.81 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
{
"name": "lambdadoor",
"version": "1.0.0",
"description": "A one-stop job platform for Lambda Students",
"main": "index.js",
"test": "jest",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"migrate": "npx knex migrate:latest",
"rollback": "npx knex migrate:rollback",
"seed": "npx knex seed:run",
"test": "cross-env DB_ENV=test jest --coverage --ci --runInBand --detectOpenHandles --forceExit",
"ci:test": "cross-env DB_ENV=ci jest --coverage --ci --runInBand --detectOpenHandles --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LABS-EU3/lambdaDoor_backend.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/LABS-EU3/lambdaDoor_backend/issues"
},
"homepage": "https://github.com/LABS-EU3/lambdaDoor_backend#readme",
"dependencies": {
"@sentry/node": "^5.12.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"handlebars": "^4.7.2",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.4",
"knex-cleaner": "^1.3.0",
"make-coverage-badge": "^1.2.0",
"nodemailer": "^6.4.2",
"nodemailer-express-handlebars": "^3.1.0",
"pg": "^7.12.1"
},
"devDependencies": {
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"supertest": "^4.0.2"
}
}