-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.12 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
{
"name": "concurrency-demo",
"version": "0.0.1",
"author": {
"name": "Siddharth Jain"
},
"private": true,
"scripts": {
"build": "tsc",
"start": "./run-pg.sh overdraft-demo",
"pg-overdraft-protection-demo": "./run-pg.sh overdraft-demo",
"pg-intersecting-data-demo" : "./run-pg.sh intersecting-data-demo",
"pg-black-white-demo" : "./run-pg.sh black-white-demo",
"pg-rgb-demo" : "./run-pg.sh rgb-demo",
"mysql-overdraft-protection-demo": "./run-mysql.sh overdraft-demo",
"mysql-intersecting-data-demo" : "./run-mysql.sh intersecting-data-demo",
"mysql-black-white-demo" : "./run-mysql.sh black-white-demo",
"mysql-rgb-demo" : "./run-mysql.sh rgb-demo",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/app.js\"",
"test": "jest"
},
"dependencies": {
"mysql2": "^3.2.3",
"pg": "^8.10.0",
"sequelize": "^6.29.1"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.14.4",
"concurrently": "^7.6.0",
"jest": "^29.4.3",
"nodemon": "^2.0.21",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}