forked from BornaSadeghi/htn2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "htn2021",
"version": "1.0.0",
"description": "Project for Hack the North 2021",
"main": "backend/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:server": "NODE_ENV=development node ./backend/server.js",
"dev:client": "npm run start --prefix frontend",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/BornaSadeghi/htn2021.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BornaSadeghi/htn2021/issues"
},
"homepage": "https://github.com/BornaSadeghi/htn2021#readme",
"dependencies": {
"body-parser": "^1.19.0",
"child-process": "latest",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"pg": "latest",
"pg-connection-string": "latest",
"prompt": "latest",
"sequelize": "^6.6.5",
"sequelize-cockroachdb": "^6.0.1",
"uuid": "latest"
},
"devDependencies": {
"concurrently": "^6.2.1"
}
}