forked from McNaBry/orbital-grindtogether
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 824 Bytes
/
package.json
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
{
"name": "orbital-grindtogether",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"updateFrontend": "cd frontend-client && npm install",
"updateBackend": "cd backend && npm install",
"updateAll": "concurrently \"npm install\" \"npm run updateFrontend\" \"npm run updateBackend\"",
"frontend": "cd frontend-client && npm run dev",
"backend": "cd backend && npm run start",
"deploy": "concurrently \"npm run frontend\" \"npm run backend\"",
"e2e": "cd frontend-client && cypress open",
"test": "concurrently \"npm run e2e\" \"npm run deploy\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"babel-loader": "^9.1.3",
"concurrently": "^8.0.1"
},
"dependencies": {
"cypress": "^12.17.1"
}
}