-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.58 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
{
"name": "back-end",
"version": "1.0.0",
"description": "",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/sequelize": "^4.28.13",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"babel-jest": "^28.1.1",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.2",
"jest": "^28.1.0",
"sequelize-cli": "^6.4.1",
"ts-jest": "^28.0.4",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"sequelize": "^6.9.0",
"supertest": "^6.2.3",
"ts-node": "^10.8.1"
},
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules --no-notify src/server.ts",
"start": "node build/server.js",
"lint": "eslint --ext .ts src",
"test": "jest --verbose --runInBand",
"drop": "npx sequelize-cli db:drop",
"engage": "npm run drop && npx sequelize-cli db:create && npx sequelize-cli db:migrate && npx sequelize-cli db:seed:all && npm run dev",
"build": "npm run lint && npm run test && tsc && npm run drop && npm run engage",
"build:watch": "tsc --watch"
}
}