-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 964 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
36
{
"name": "wordsmith",
"version": "2.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "npm start --prefix client",
"dev": "nodemon server.js",
"start": "node server.js && npm client",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"debugger": "DEBUG=*:* npm run dev"
},
"author": "",
"license": "ISC",
"engines": {
"node": "12.12.0"
},
"dependencies": {
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"concurrently": "^5.0.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^4.0.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"lyricist": "^2.2.0",
"morgan": "^1.8.2",
"normalize.css": "^8.0.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg-promise": "^6.3.5",
"react-spring": "^8.0.27"
}
}