-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.24 KB
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
{
"name": "ereactthohir-monorepo",
"version": "1.5.0",
"description": "A powerful, enterprise-grade fullstack TypeScript framework for modern web and mobile development",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"serve": "ts-node packages/cli/src/index.ts serve",
"dev": "npm run serve",
"migrate": "ts-node packages/cli/src/index.ts migrate",
"generate:model": "ts-node packages/cli/src/index.ts generate:model",
"generate:controller": "ts-node packages/cli/src/index.ts generate:controller",
"publish-all": "node scripts/publish-all.js"
},
"keywords": [
"framework",
"typescript",
"react",
"mobile",
"web",
"laravel",
"full-stack"
],
"author": "KangPCode (Dhafa Nazula Permadi)",
"license": "GPL-3.0-only",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"jest": "^30.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
},
"dependencies": {
"bcryptjs": "^3.0.3"
}
}