-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.54 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
{
"name": "tlca-backend",
"version": "1.2.2",
"description": "Backend server of the TLCA platform",
"repository": "https://github.com/TLCA-project/tlca-backend.git",
"author": "AEI Consulting <info@aei-consulting.be>",
"license": "AGPL-3.0-only",
"private": false,
"main": "index.js",
"type": "module",
"scripts": {
"start": "cross-env NODE_ENV=development node index.js",
"start:prod": "cross-env NODE_ENV=production node index.js",
"test": "cross-env NODE_ENV=test mocha",
"watch": "cross-env NODE_ENV=development nodemon index.js -e js",
"lint:js": "eslint --ext \".js\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix",
"prepare": "husky install"
},
"dependencies": {
"@bugsnag/js": "^7.17.0",
"@graphql-tools/schema": "^8.5.0",
"apollo-server": "^3.10.0",
"check-password-strength": "^2.0.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"fs": "^0.0.1-security",
"fs-extra": "^10.1.0",
"graphql": "^16.5.0",
"jsonwebtoken": "^8.5.1",
"luxon": "^3.0.1",
"mongoose": "^6.4.4",
"nodemailer": "^6.7.8",
"path": "^0.12.7",
"validator": "^13.7.0"
},
"devDependencies": {
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
}
}