-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.47 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
{
"name": "typescript-maker",
"version": "0.0.1",
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
"engines": {
"node": ">=14"
},
"main": "dist/index.js",
"scripts": {
"start1": "node dist/app.js",
"start": "ts-node -r tsconfig-paths/register -r dotenv/config src/index",
"dev": "nodemon --config restart.json",
"clean": "rm -rf coverage dist tmp",
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -w -p tsconfig.build.json",
"test": "jest"
},
"author": "Stefan Stoichev <stefan.stoichev@gmail.com>",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2",
"express-list-endpoints": "^7.1.0",
"js-yaml": "^4.1.0",
"pg": "^8.12.0",
"qlik-repo-api": "^0.13.2",
"sequelize": "^6.37.3",
"sequelize-typescript": "^2.1.6",
"tslib": "~2.7.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.7",
"@types/express": "^4.17.21",
"@types/express-list-endpoints": "^6.0.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "~22.5.0",
"nodemon": "^3.1.4",
"prettier": "~3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tsutils": "~3.21.0",
"typescript": "~5.7.0"
}
}