-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "recall-server",
"version": "0.0.1",
"main": "index.js",
"repository": "[email protected]:Friendsofthepeople/recall-server.git",
"workspaces": [
"packages/*"
],
"contributors": [
"Timothy Mugo Gachengo <[email protected]>"
],
"license": "MIT",
"private": true,
"scripts": {
"start": "lerna run start",
"dev": "lerna run dev",
"build": "lerna run build",
"generate-migrations": "lerna run generate-migrations",
"migrate": "lerna run migrate",
"check-migrations": "lerna run check",
"drizzle-studio": "lerna run studio"
},
"devDependencies": {
"@nx/node": "^19.3.0",
"@nx/nx-linux-arm64-gnu": "19.3.0",
"@types/node": "^20.14.6",
"lerna": "^8.1.3",
"nodemon": "^3.1.4",
"nx": "^19.3.0",
"nx-cloud": "^19.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "19.3.0",
"@nx/nx-darwin-x64": "19.3.0",
"@nx/nx-linux-arm-gnueabihf": "19.3.0",
"@nx/nx-linux-arm64-gnu": "19.3.0",
"@nx/nx-linux-arm64-musl": "19.3.0",
"@nx/nx-linux-x64-gnu": "19.3.0",
"@nx/nx-linux-x64-musl": "19.3.0",
"@nx/nx-win32-arm64-msvc": "19.3.0",
"@nx/nx-win32-x64-msvc": "19.3.0"
}
}