-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 865 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 865 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
30
31
32
33
{
"name": "space-sql",
"version": "0.0.1-SNAPSHOT",
"description": "SQL Learning Platform with interactive exercises",
"scripts": {
"install-frontend": "cd frontend && npm install",
"build-frontend": "cd frontend && npm run build",
"start-frontend": "cd frontend && npm start",
"start-backend": "mvn spring-boot:run -Dspring-boot.run.profiles=dev",
"dev": "concurrently \"npm run start-backend\" \"npm run start-frontend\"",
"build": "mvn clean install",
"test": "mvn test"
},
"devDependencies": {
"concurrently": "^8.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/space-sql.git"
},
"keywords": [
"sql",
"learning",
"education",
"spring-boot",
"react"
],
"author": "",
"license": "MIT",
"dependencies": {
"react-bootstrap": "^2.10.10"
}
}