-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
33 lines (33 loc) · 881 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
{
"name": "cptracker",
"version": "1.0.0",
"description": "The ultimate coding contest tracker on the Internet",
"main": "app.js",
"scripts": {
"start": "node app.js",
"app": "nodemon app",
"client": "cd client && npm run start",
"dev": "concurrently \"npm run app\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JanaSabuj/CPTracker.git"
},
"author": "Sabuj Jana",
"license": "MIT",
"bugs": {
"url": "https://github.com/JanaSabuj/CPTracker/issues"
},
"homepage": "https://github.com/JanaSabuj/CPTracker#readme",
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"react-ga": "^2.7.0"
},
"devDependencies": {
"concurrently": "^5.1.0",
"nodemon": "^2.0.3"
}
}