-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 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
{
"name": "@mmcorrelo-api/transactions",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "rm -rf build/ && npx gulp --releaseVersion 1.0.0",
"deploy": "./src/scripts/deploy.sh 1.0.0",
"clean": "rm -f -r node_modules dist && npm cache verify",
"db:start": "brew services start postgresql",
"db:stop": "brew services stop postgresql",
"db:import": "tsc ./src/scripts/importTransaction.ts && node ./src/scripts/importTransaction.js",
"dev": "nodemon src/server.ts",
"lint:fix": "eslint src/** --fix",
"lint": "eslint src/**",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Miguel Correlo <[email protected]>",
"license": "ISC",
"dependencies": {
"axios": "^0.26.0",
"cors": "^2.8.5",
"express": "^4.17.3",
"mysql2": "^2.3.3",
"nodemon": "^2.0.15",
"pg": "^8.7.3",
"sequelize": "^6.19.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.11.18",
"@types/pg": "^8.6.6",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.22.0",
"@types/cors": "^2.8.13",
"eslint": "^8.14.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-cli": "^2.3.0",
"gulp-replace": "^1.1.4",
"gulp-run": "^1.7.1",
"prettier": "^2.8.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0",
"dotenv": "^16.0.0"
}
}