-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.04 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
{
"name": "atlas",
"version": "1.0.0",
"description": "Atlas Enterprise Application Framework — A modular, event-driven platform for building enterprise software.",
"private": true,
"scripts": {
"dev": "pnpm --parallel --filter frontend --filter saas-portal --filter @atlas/backend dev",
"build": "pnpm -r build",
"lint": "pnpm --parallel -r lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"clean": "pnpm -r clean && rimraf node_modules",
"test": "pnpm -r test"
},
"keywords": [
"enterprise",
"framework",
"plugin-architecture",
"modular",
"erp"
],
"author": "Aditya Singh",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.4",
"devDependencies": {
"prettier": "3.4.2",
"typescript": "5.6.3",
"rimraf": "6.0.1"
},
"pnpm": {
"overrides": {
"react": "18.3.1",
"react-dom": "18.3.1"
}
}
}