-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.82 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
{
"name": "codify",
"version": "1.0.0",
"description": "",
"main": "server.js",
"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",
"deploy": "npm run build && pm2 start server.js --name codify -- --port 3000 --watch",
"heroku-postbuild": "npm run build",
"seed": "node scripts/seedDB.js",
"test": "npm run lint",
"lint": "concurrently \"eslint --quiet .\" \"cd client && npm run lint\"",
"fix": "concurrently \"eslint --fix . \" \"cd client && npm run lint\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"faker": "^4.1.0",
"nodemon": "^1.18.7",
"prettier": "^2.0.5"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"chart.js": "^2.9.3",
"cleave.js": "^1.6.0",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint-plugin-react-hooks": "0.0.0-7f28234f8",
"express": "^4.16.3",
"helmet": "^3.23.3",
"if-env": "^1.0.4",
"jquery": "^3.5.1",
"lodash": "^4.17.19",
"materialize-css": "^1.0.0",
"moment": "^2.26.0",
"mongoose": "^5.8.11",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"passport-google-oauth": "^2.0.0",
"passport-linkedin-oauth2": "^2.0.0",
"prop-types": "^15.7.2",
"puppeteer": "^5.0.0",
"react": "^16.13.1",
"react-chartjs": "^1.2.0",
"react-chartjs-2": "^2.9.0",
"react-dom": "^16.13.1",
"react-scripts": "^3.4.1"
}
}