-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "prota",
"version": "1.0.0",
"description": "Prota Application",
"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",
"heroku-postbuild": "npm run build"
},
"author": "Andrew Johnson",
"contributors": [
"Kieran Anthony <zekkxx@gmail.com> (https://zekkxx.github.io/portfolio/)",
"John Blake",
"Nhu Richie",
"Adam Schubert"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/adj-dev/prota.git"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^2.0.3"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"cookie-parser": "^1.4.4",
"dotenv": "^8.0.0",
"express": "^4.16.3",
"express-session": "^1.16.2",
"if-env": "^1.0.4",
"moment": "^2.24.0",
"mongoose": "^5.7.5",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"path": "^0.12.7",
"react-addons-css-transition-group": "^15.6.2",
"react-moment": "^0.9.2",
"smoothscroll-polyfill": "^0.4.4"
}
}