-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.3 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "server",
"version": "1.0.0",
"description": "A Node/React blog application for production use",
"author": "",
"license": "MIT",
"main": "index.js",
"engines": {
"node": "^12.7.0",
"yarn": "^1.17.0"
},
"_moduleAliases": {
"@config": "./config",
"@middleware": "./middleware",
"@models": "./models",
"@routes": "./routes",
"@services": "./services"
},
"jest": {
"setupFilesAfterEnv": ["./tests/setup.js"]
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "yarn --cwd client start",
"dev": "concurrently \"yarn server\" \"yarn client\"",
"build": "yarn --cwd client install && yarn --cwd client build",
"heroku-postbuild": "yarn build",
"test": "jest --detectOpenHandles"
},
"dependencies": {
"aws-sdk": "^2.188.0",
"body-parser": "^1.19.0",
"cookie-session": "^1.3.3",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"migrate-mongoose": "^4.0.0",
"module-alias": "^2.2.1",
"mongoose": "^5.6.9",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"path-parser": "^4.2.0",
"redis": "^2.8.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"concurrently": "^4.1.1",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"puppeteer": "^1.19.0"
}
}