-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "movimusify_react_and_express_fullstack",
"version": "1.0.0",
"description": "The backend of an app that serves APIs w/ Music, Movies, and more.",
"main": "app.js",
"scripts": {
"test": "mocha",
"start": "node app.js",
"dev": "nodemon app.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"engines": {
"node": "18.12.1",
"npm": "8.19.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kimanicharles911/movimusify_react_and_express_fullstack.git"
},
"author": "Charles Kimani & Emmethub",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimanicharles911/movimusify_react_and_express_fullstack/issues"
},
"homepage": "https://github.com/kimanicharles911/movimusify_react_and_express_fullstack#readme",
"dependencies": {
"axios": "^0.24.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.6.0",
"nodemon": "^2.0.15"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.3"
}
}