-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@pharm-aware/api",
"private": true,
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node --require ts-node/register ./src/index.ts",
"dev": "NODE_ENV=development nodemon --exec \"node -r ts-node/register --inspect\" ./src/index.ts",
"test": "yarn lint && yarn test:jest",
"test:unit": "NODE_ENV=test jest",
"test:integration": "NODE_ENV=test jest -ic jest.integration.config.js",
"lint": "eslint --ext .ts,.js .",
"register-commands": "NODE_ENV=production ts-node ./register-commands.ts --noEmit",
"db:migrate": "knex migrate:latest",
"db:migrate:make": "knex migrate:make -x ts",
"db:reset": "knex migrate:rollback --all"
},
"dependencies": {
"axios": "^1.4.0",
"connect-session-knex": "^3.0.1",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-joi-validation": "^5.0.1",
"express-promise-router": "^4.1.1",
"express-session": "^1.17.3",
"handlebars": "^4.7.7",
"helmet": "^6.1.5",
"joi": "^17.9.1",
"knex": "^2.4.2",
"luxon": "^3.3.0",
"mjml": "^4.14.1",
"nodemailer": "^6.9.2",
"objection": "^3.0.1",
"pg": "^8.10.0",
"short-uuid": "^4.2.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/jest": "^29.5.1",
"@types/luxon": "^3.3.0",
"@types/mjml": "^4.7.1",
"@types/node": "^18.16.0",
"@types/nodemailer": "^6.4.7",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"supertest-session": "^4.1.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}