-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.17 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": "hackthenorth21",
"version": "1.0.0",
"description": "My team's submission for Hack The North 2021",
"main": "app.js",
"scripts": {
"server": "nodemon app",
"client-install": "yarn --cwd react-app install",
"client": "yarn --cwd react-app run start",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"npm run server\" \"npm run client\"",
"dep-install": "npm install&&npm run client-install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EliasJRH/HackTheNorth21.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/EliasJRH/HackTheNorth21/issues"
},
"homepage": "https://github.com/EliasJRH/HackTheNorth21#readme",
"dependencies": {
"child_process": "^1.0.2",
"concurrently": "^6.2.1",
"connect-busboy": "^0.0.2",
"cors": "^2.8.5",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"formidable": "^1.2.2",
"fs-extra": "^10.0.0",
"http-status": "^1.5.0",
"node-fetch": "^3.0.0",
"nodemon": "^2.0.12",
"pug": "^3.0.2",
"react-router-dom": "^5.3.0",
"uuid": "^8.3.2"
}
}