-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 915 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
{
"name": "moodify",
"version": "1.0.0",
"engines": {
"node": "13.7.0"
},
"description": "Gives affirmations using text-to-speech tp help boost mood. PERN stack",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"build": "webpack",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.9.12",
"@material-ui/icons": "^4.9.1",
"bootstrap": "^4.4.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-redis-cache": "^1.1.3",
"ibm-watson": "^5.5.0",
"pg-promise": "^10.5.0"
}
}