-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.1 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
38
39
40
{
"name": "mern",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "NODE_ENV= jest --detectOpenHandles",
"start": "node server",
"server": "nodemon server",
"client": "npm start --prefix client",
"test2": "concurrently \"env-cmd -f ./config/test.env npm run server \" \"npm run client \"",
"dev": "concurrently \"env-cmd npm run server \" \"npm run client \"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"jest": {
"testEnvironment": "node"
},
"author": "Byorn",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"config": "^3.2.0",
"env-cmd": "^9.0.3",
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"express-validator": "^6.1.1",
"gravatar": "^1.8.0",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"mem": ">=4.0.0",
"mongoose": "^5.6.4",
"node-fetch": "^2.6.0",
"request": "^2.88.0",
"supertest": "^4.0.2",
"unsplash-js": "^5.0.0"
},
"devDependencies": {
"concurrently": "^4.1.1"
}
}