-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
19 lines (19 loc) · 1003 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "sankalp",
"version": "0.0.1",
"description": "Sankalp is a user-friendly registration form application. This intuitive and efficient tool streamlines the registration process, allowing individuals to easily sign up for SOSC events and hackathons. With Sankalp SOSC can collect essential participant information seamlessly, ensuring a smoother and more organized registration experience for both users and administrators.",
"scripts": {
"start": "concurrently \"npm run client\" \"npm run api\"",
"client": "cd web/client && pnpm i && pnpm dev",
"api": "cd web/api && pnpm i && pnpm start",
"build-client": "cd web/client && next build",
"build-api": "cd web/api && tsc",
"build": "concurrently \"npm run build-client\" \"npm run build-api\""
},
"keywords": ["sosc", "sankalp", "form"],
"author": "Akkil M G, Deveesh Shetty & SOSC",
"license": "ISC",
"dependencies": {
"concurrently": "^8.2.2"
}
}