-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.24 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
{
"name": "will-i-tan",
"version": "1.0.0",
"description": "Fullstack MERN Web App that will take in user inputs to determine the time necessary for that user to get a tan.",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "concurrently \"npm run start:server\" \"npm run start:client\"",
"start:server": "node --inspect=0.0.0.0 server.js",
"start:prod": "node server.js",
"start:client": "npm run client",
"client": "cd client && npm run start",
"client-install": "cd client && yarn install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build",
"lint": "eslint ."
},
"author": "JQuinnie",
"license": "ISC",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-react": "^7.14.2",
"mocha": "^6.1.4"
},
"dependencies": {
"@google/maps": "^0.5.5",
"async": "^3.1.0",
"axios": "^0.24.0",
"concurrently": "^5.3.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"if-env": "^1.0.4",
"lodash": "^4.17.21"
}
}