-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.1 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.1 KB
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
{
"name": "sicri-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "ts-node-dev --respawn --transpile-only src/server.ts --ignore-watch node_modules",
"build": "rm -rf dist && babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored && cd dist && mkdir archives && cd .."
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^20.2.5",
"@types/validator": "^13.7.17",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^7.0.0",
"node-cron": "^3.0.2",
"oracledb": "^6.0.3",
"reflect-metadata": "^0.1.13",
"typeorm": "0.2.45",
"typeorm-naming-strategies": "^4.1.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.22.1",
"@babel/node": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.18.6",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"babel-preset-env": "^1.7.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"sequelize-cli": "^6.6.0",
"superagent": "^8.0.9",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"directories": {
"test": "tests"
},
"keywords": []
}