-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1006 Bytes
/
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
{
"name": "sql-simple-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"
},
"keywords": [],
"author": "",
"dependencies": {
"config-plus": "^0.0.4",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-ext": "^0.4.0",
"logger-core": "^0.3.1",
"onecore": "^0.1.5",
"pg": "^8.14.1",
"pg-extension": "^0.2.3",
"query-core": "^0.2.0",
"types-validation": "^0.0.2",
"xvalidators": "^0.3.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/pg": "^8.11.11",
"nodemon": "^3.1.9",
"ts-loader": "^9.5.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"webpack": "^5.98.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
}
}