-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 968 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 968 Bytes
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
{
"name": "godojo",
"version": "1.0.0",
"description": "Go Learning Platform - Complete course from zero to middle+ level",
"private": true,
"type": "module",
"workspaces": [
"books/*",
"apps/*"
],
"scripts": {
"ru:generate": "npm run generate:structure -w @godojo/go-language-ru",
"ru:validate": "npm run validate -w @godojo/go-language-ru",
"ru:stats": "npm run stats -w @godojo/go-language-ru",
"en:generate": "npm run generate:structure -w @godojo/go-language-en",
"en:validate": "npm run validate -w @godojo/go-language-en",
"en:stats": "npm run stats -w @godojo/go-language-en",
"dev": "npm run dev -w godojo-frontend",
"build": "npm run build -w godojo-frontend",
"preview": "npm run preview -w godojo-frontend",
"sync": "npm run sync -w godojo-frontend",
"start": "npm run sync && npm run dev"
},
"engines": {
"node": ">=24.0.0"
},
"author": "Godojo Master",
"license": "MIT"
}