-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.2 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
{
"name": "sitspot",
"version": "1.0.0",
"description": "## Problem - People love traveling independently - People are making ethical choices in food, fashion - People want to bring travel in line with their sustainable values - **Travellers lack resources to make informed environment-friendly choices**",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node ./server/index.js",
"dev": "NODE_ENV=development concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "NODE_ENV=development nodemon server",
"dev:client": "cd client && npm run start",
"heroku-postbuild": "NODE_ENV=production cd client && npm install && npm run build",
"test:server": "NODE_ENV=test node tests/index.test.js | tap-spec",
"test:client": "cd client && npm t",
"test": "npm run test:server && npm run test:client",
"kill": "fuser -k 5000/tcp",
"kill-run": "npm run kill && NODE_ENV=development npm run dev",
"kill-both": "npm run kill && cd client && fuser -k 3000/tcp",
"project-i": "npm i && cd client && npm i",
"lint:server": "eslint server/",
"lint:client": "cd client && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G7/sitspot.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G7/sitspot/issues"
},
"homepage": "https://github.com/GSG-G7/sitspot#readme",
"dependencies": {
"airtable": "^0.7.2",
"axios": "^0.19.0",
"cloudinary": "^1.16.0",
"express": "^4.17.1",
"multer": "^1.4.2",
"yup": "^0.27.0"
},
"devDependencies": {
"concurrently": "^5.0.0",
"env2": "^2.2.2",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.4",
"pre-commit": "^1.2.2",
"prettier": "1.18.2",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"pre-commit": [
"lint:server",
"lint:client"
]
}