-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.69 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
{
"name": "techchallengengcash-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register ./src/tests/integration/*$NAME*.{test,spec}.ts -t 10000 --exit",
"build": "npx -y tsc",
"db:reset": "npx sequelize-cli db:drop && npx sequelize-cli db:create && npx sequelize-cli db:migrate",
"start": "npm run build && npm run db:reset && node ./dist/index.js",
"dev": "npm run build && npm run db:reset && tsnd ./src/index.ts",
"compose:up:dev": "docker-compose -f docker-compose.dev.yml up -d --build",
"compose:down:dev": "docker-compose -f docker-compose.dev.yml down"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.25.5"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chai": "4.3.0",
"@types/chai-http": "4.2.0",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/sequelize": "^4.28.14",
"@types/sinon": "^10.0.13",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "15.0.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-sonarjs": "0.10.0",
"mocha": "^10.1.0",
"sequelize-cli": "^6.5.2",
"sinon": "^14.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}