-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "far-nearer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "NODE_ENV=development nodemon server/",
"start:client": "cd client && npm start",
"start": "NODE_ENV=production node server/",
"heroku-postbuild": "cd client && npm install && npm run build",
"test": "NODE_ENV=test tape test/**/*.js tape test/*.js | tap-spec",
"lint": "eslint server/",
"lint-fix": "eslint server/ --fix",
"lint:react": "cd client && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G7/far-nearer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G7/far-nearer/issues"
},
"homepage": "https://github.com/GSG-G7/far-nearer#readme",
"dependencies": {
"airtable": "^0.7.2",
"camelcase-keys": "^6.1.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.6-alpha.6",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"nodemailer": "^6.3.1",
"yup": "^0.27.0"
},
"devDependencies": {
"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-prettier": "^3.1.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": [
"test",
"lint",
"lint:react"
]
}