-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.71 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "like-it-or-not",
"version": "1.0.0",
"description": "Like It Or Not",
"main": "server.js",
"engines": {
"node": "12.16.x"
},
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build",
"docs": "jsdoc -c ./jsdocrc.json -r .",
"preinstall": "npx npm-force-resolutions",
"test": "./client/node_modules/.bin/jest",
"cypress:open": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mike-4040/like-it-or-not.git"
},
"author": "Kostas Agapov & Mike Kravtsov",
"license": "ISC",
"bugs": {
"url": "https://github.com/mike-4040/like-it-or-not/issues"
},
"homepage": "https://github.com/mike-4040/like-it-or-not#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@uppy/core": "^1.10.4",
"@uppy/react": "^1.6.5",
"@uppy/webcam": "^1.6.5",
"bcrypt": "^4.0.1",
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"if-env": "^1.0.4",
"mongoose": "^5.9.12",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"jsdoc": "^3.6.4",
"minimist": "^1.2.5",
"cypress": "^4.3.0"
},
"resolutions": {
"minimist": "^1.2.5"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/client"
]
}
}