-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.28 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
{
"name": "Music",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"lint": "eslint .",
"test": "jest",
"dev": "ENV=LOCAL ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules --respawn src/shared/infra/server.ts",
"typeorm": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli --config src/shared/infra/database/config/ormconfig.ts --connection music",
"build": "rm -rf dist && babel src --extensions \".js,.ts\" --out-dir dist --copy-files",
"start": "node dist/shared/infra/server.js"
},
"author": "Luiz Curti",
"license": "ISC",
"dependencies": {
"@types/uuid": "^9.0.1",
"axios": "^1.3.4",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"express-handlebars": "^7.0.4",
"helmet": "^6.0.1",
"mysql2": "^2.3.3",
"promise-redis": "^0.0.5",
"redis": "^4.6.5",
"routes": "^2.1.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsyringe": "^4.7.0",
"typeorm": "^0.2.41",
"uuid": "^9.0.0",
"yup": "^1.0.2"
},
"devDependencies": {
"@babel/cli": "^7.15.8",
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-decorators": "^7.16.5",
"@babel/plugin-proposal-private-methods": "^7.16.5",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.18.6",
"@babel/types": "^7.18.7",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/redis": "^4.0.11",
"@types/validator": "^13.7.14",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-import-resolver-typescript": "^3.4.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"supertest": "^6.2.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.2"
}
}