-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 1.42 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "kahoot-clone",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node back-end/server.js",
"dev": "concurrently \"npm run start-server\" \"npm run start-client\"",
"server-install": "cd back-end && npm install",
"client-install": "cd front-end && npm install",
"start-server": "nodemon -e js,jsx,html back-end/server.js",
"start-client": "cd front-end && npm start",
"build-client": "cd front-end && npm run build && mv build ../back-end/build",
"start-server-mock": "cd back-end && nodemon serverMock.js",
"cyrun": "cd front-end && npm run cyrun",
"cyopen": "cd front-end && npm run cyopen",
"test:back:dev": "cd back-end && npm run test:dev",
"test:back": "cd back-end && npm run test",
"test:front": "cd front-end && npm run test a",
"schema:sync": "cd back-end/src/cli && node init.db.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/r-argentina-programa/kahoot-clone.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/r-argentina-programa/kahoot-clone/issues"
},
"homepage": "https://github.com/r-argentina-programa/kahoot-clone#readme",
"devDependencies": {
"@testing-library/jest-dom": "^5.11.6",
"concurrently": "^5.3.0",
"http-server": "^0.12.3",
"mock-socket": "^9.0.3",
"nodemon": "^2.0.6",
"serve": "^11.3.2"
}
}