-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.37 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": "monointegrator",
"version": "3.3.0",
"description": "monoIntegrator",
"main": "index.js",
"scripts": {
"start:dev": "nodemon index.js dev",
"start": "node index.js",
"setup": "npm run setup:sm && npm run setup:um",
"setup:cryptokey": "node tools/cryptoKey.js",
"setup:um": "node modules/userManagement/src/setup/step1.js && node modules/userManagement/src/setup/step2.js",
"setup:um:mip": "npx prisma migrate deploy --schema=./modules/userManagement/src/prisma/scheme.prisma",
"setup:sm": "node core/statsManager/src/setup/step1.js",
"setup:sm:mip": "npx prisma migrate deploy --schema=./core/statsManager/src/scheme.prisma"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaferna/monoIntegrator.git"
},
"author": "aaferna",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aaferna/monoIntegrator/issues"
},
"homepage": "https://github.com/aaferna/monoIntegrator#readme",
"dependencies": {
"@prisma/client": "^5.7.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"dotenv-safe": "^8.2.0",
"express": "^4.18.1",
"helmet": "^6.0.0",
"jsonwebtoken": "^9.0.2",
"log4js": "^6.6.1",
"readline": "^1.3.0",
"sqlite3": "^5.1.7-rc.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"nodemon": "^2.0.19",
"prisma": "^5.7.1"
}
}