forked from Sonar-Demos/typescript-express-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 978 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
{
"name": "typescript-express-demo",
"version": "1.0.0",
"description": "A demo application to show how Sonar products work",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "nodenv ./src/index.ts --exec 'nodemon --exec \"node --loader ts-node/esm\"'",
"build": "tsc",
"test": "nodenv --exec 'c8 -r lcov -r text-summary --exclude src/test node --loader ts-node/esm --test ./src/test/**/*_test.ts' --env .env.test.local",
"db:init": "nodenv --exec 'node --loader ts-node/esm ./src/scripts/init_db.ts'"
},
"author": "Phil Nash <[email protected]> (https://philna.sh/)",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"c8": "^8.0.0",
"node-env-run": "^4.0.2",
"nodemon": "^2.0.22",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"express": "^4.18.2",
"express-handlebars": "^7.0.7",
"sqlite3": "^5.1.6"
}
}