-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.62 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
{
"name": "interview-calendar-api",
"version": "0.0.0",
"description": "An interview calendar API",
"homepage": "https://github.com/NMFR/interview-calendar-api#README",
"bugs": {
"url": "https://github.com/NMFR/interview-calendar-api/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:NMFR/interview-calendar-api.git"
},
"main": "src/index.js",
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"prettier --config .prettierrc --write",
"eslint --fix --quiet",
"git add"
]
},
"scripts": {
"start": "node src/index.js",
"start-dev": "nodemon --inspect=0.0.0.0:8888 src/index.js",
"test": "jest",
"format": "prettier --config .prettierrc --write \"src/**/*.{js,jsx}\"",
"lint": "npm run format && eslint \"src/**/*.{js,jsx,json}\"",
"lint-fix": "npm run format && eslint --fix --quiet \"src/**/*.{js,jsx,json}\"",
"precommit": "lint-staged"
},
"license": "UNLICENSED",
"author": "Nuno Rodrigues",
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/register": "^7.0.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-async-wrap": "^1.0.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"eslint": "5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"nodemon": "^1.18.5",
"prettier": "^1.14.3"
}
}