-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.11 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "lfht",
"version": "1.0.0",
"private": true,
"description": "Let's Find a Home Together",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"build": "react-scripts build",
"test": "npm run test:server && react-scripts test",
"test:server": "jest --env=node --testPathIgnorePatterns='src' --coverage",
"eject": "react-scripts eject",
"start:dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"start:prod": "node server",
"client:dev": "react-scripts start",
"server:dev": "nodemon server"
},
"proxy": "http://localhost:3001",
"repository": {
"type": "git",
"url": "git+https://github.com/jonathan-meyer/regular-expert.git"
},
"author": "Jonathan Meyer <jon@stej.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jonathan-meyer/regular-expert/issues"
},
"homepage": "https://lfht.herokuapp.com",
"dependencies": {
"@stej/emoji": "^1.0.1",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.3.1",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-acl": "^2.0.8",
"express-session": "^1.16.2",
"if-env": "^1.0.4",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"passport-local": "^1.0.0",
"popper.js": "^1.15.0",
"react": "^16.9.0",
"react-bootstrap": "^1.0.0-beta.12",
"react-dom": "^16.9.0",
"react-modal": "^3.10.1",
"react-player": "^1.12.0",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.1.0",
"react-widgets": "^4.4.11",
"redis": "^2.8.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^4.1.1",
"cross-env": "^5.2.0",
"nodemon": "^1.19.1"
}
}