-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 968 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
27
28
29
30
31
32
33
34
35
{
"name": "tt3_group1",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"backend": "nodemon server.js",
"frontend": "npm run start --prefix techtrek-app",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix techtrek-app && npm run build --prefix techtrek-app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/case141/TT3_Group1.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/case141/TT3_Group1/issues"
},
"homepage": "https://github.com/case141/TT3_Group1#readme",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"react-line-graph": "^1.0.6",
"recharts": "^2.0.8"
},
"devDependencies": {
"concurrently": "^6.0.0",
"nodemon": "^2.0.7"
}
}