-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.32 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "20-devlr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server/index.js",
"start:dev": "concurrently \"nodemon server/index.js\" \"npm run client\"",
"seed": "node seeders/seed.js",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint '*/**/*.js' --ignore-path .gitignore",
"server": "nodemon server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brandyquinlan/devlr.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"eslintConfig": {
"extends": [
"prettier"
],
"plugins": [
"prettier"
],
"root": true,
"rules": {
"react/prop-types": "off",
"no-underscore-dangle": "off",
"no-unused-vars": "off",
"no-console": "off",
"import/no-named-as-default-member": "off",
"consistent-return": "off",
"no-case-declarations": "off",
"no-restricted-globals": "off",
"prettier/prettier": [
"error"
]
},
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
}
},
"prettier": "@imaginary-cloud/prettier-config",
"bugs": {
"url": "https://github.com/brandyquinlan/devlr/issues"
},
"homepage": "https://github.com/brandyquinlan/devlr#readme",
"dependencies": {
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"if-env": "^1.0.4",
"linkifyjs": "^3.0.0-beta.3",
"mongoose": "^5.12.7",
"nodemailer": "^6.6.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"socket.io": "^4.1.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@imaginary-cloud/eslint-config-react": "^1.0.1",
"concurrently": "^6.0.2",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^2.5.1",
"prettier": "^2.3.0"
}
}