-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.16 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": "manas-ai",
"version": "0.0.1",
"description": "The Manas AI",
"scripts": {
"dev": "concurrently \"pnpm run api:dev\" \"pnpm run web:dev\"",
"start": "concurrently \"nx run api:start:prod\" \"nx run web:preview --port 6288\"",
"web:dev": "nx run web:dev",
"web:build": "nx run web:build",
"web:lint": "nx run web:lint",
"web:gql-gen": "nx run web:gql-gen",
"web:test": "nx run web:test",
"api:dev": "nx run api:start:debug",
"api:build": "nx run api:build",
"api:lint": "nx run api:lint",
"api:test": "nx run api:test",
"lint": "nx run-many --target=lint --all",
"test": "nx run-many --target=test --all",
"build": "nx run-many --target=build --all",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"keywords": [
"ManasAI",
"OpenDevin",
"DevinAI",
"Software Engineer",
"AGI",
"LLM"
],
"author": "Yash Patel <hello@yashpokar.com>",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nx": "^18.2.1",
"prettier": "3.2.5"
}
}