-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.38 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.38 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
{
"name": "wellspent",
"version": "1.0.0",
"description": "WellSpent is a web app that enables you to shop ethically and get the ethical details about brands.",
"main": "index.js",
"scripts": {
"install-client": "cd client && npm i",
"build": "cd client && npm run build",
"client": "cd client && npm run start",
"server": "nodemon Server/server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server \" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build",
"start": "node Server/server.js",
"eslint": "./node_modules/.bin/eslint ./src",
"eslint:fix": "./node_modules/.bin/eslint --fix ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FACK1/wellSpent.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACK1/wellSpent/issues"
},
"homepage": "https://github.com/FACK1/wellSpent#readme",
"dependencies": {
"@blueprintjs/core": "^3.14.1",
"airtable": "^0.5.9",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"env2": "^2.2.2",
"express": "^4.16.4"
},
"devDependencies": {
"concurrently": "^4.1.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"nodemon": "^1.18.10"
}
}