-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
48
{
"name": "stars-api",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"start": "npm run build && npm run db -s & node dist/main.js",
"build": "npm i && tsc",
"db:test": "mongod --dbpath db/ --bind_ip 127.0.0.1 --replSet packagesReplSetTest1",
"db": "mongod --dbpath db/ --bind_ip 127.0.0.1 --replSet packagesReplSet",
"dev": "nodemon --exec \"prisma generate && tsc && node dist/main.js || exit 1\" --ext ts,prisma"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cosmo-lang/stars-api.git"
},
"keywords": [
"cosmo",
"stars",
"api",
"registry",
"package",
"manager"
],
"author": "R-unic",
"license": "ISC",
"bugs": {
"url": "https://github.com/cosmo-lang/stars-api/issues"
},
"homepage": "https://github.com/cosmo-lang/stars-api#readme",
"dependencies": {
"@prisma/client": "^4.15.0",
"@types/express": "^4.17.17",
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"mongodb": "^5.6.0",
"multer": "^1.4.5-lts.1",
"prisma": "^4.15.0",
"tslib": "^2.5.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/uuid": "^9.0.2",
"nodemon": "^2.0.22",
"typescript": "^5.1.3"
}
}