-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 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
43
44
45
46
{
"name": "codepulse-monorepo",
"version": "1.0.0",
"description": "CodePulse Monorepo - Online IDE with Code Execution",
"type": "module",
"workspaces": [
"frontend",
"backend",
"e2e"
],
"scripts": {
"dev": "npm run dev --prefix backend",
"build": "npm run build --workspaces --if-present",
"test": "npm test --workspaces --if-present",
"test:coverage": "npm run test:coverage --prefix backend",
"lint": "npm run lint --workspaces --if-present",
"format": "prettier --write .",
"typecheck": "tsc --noEmit"
},
"keywords": [
"code-execution",
"online-ide",
"monorepo",
"html",
"nodejs",
"glot-io",
"qa",
"testing"
],
"author": "Patrick Araujo",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.2.4",
"typescript": "^5.4.5"
},
"dependencies": {
"lottie-react": "^2.4.1"
}
}