-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "sql-modular-sample",
"version": "1.0.0",
"description": "",
"main": "app",
"scripts": {
"start": "nodemon --exec ts-node-dev src/app",
"build": "webpack --config webpack.config.js",
"prod": "node dist/app",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint -c .eslintrc.js --ext .ts src"
},
"keywords": [],
"author": "",
"dependencies": {
"config-plus": "^0.0.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-ext": "^0.1.35",
"logger-core": "^0.3.0",
"mysql2": "^2.3.3",
"mysql2-core": "^0.2.1",
"onecore": "^0.0.43",
"query-core": "^0.1.28",
"types-validation": "^0.0.2",
"xvalidators": "^0.0.8"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.25.0",
"nodemon": "^2.0.20",
"ts-loader": "^9.4.1",
"ts-node-dev": "^2.0.0",
"tslint": "5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}