forked from Flowdeeps/code-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "@motleyagency/code-challenge-backend",
"version": "1.0.0",
"description": "https://motley.fi backend test",
"main": "index.js",
"bin": {
"motley-generate-fake-test-data": "generate-fake-data.js"
},
"scripts": {
"generate-data": "bin/generate-fake-data.js",
"start": "node index",
"test": "jest",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/motleyagency/code-challenge.git"
},
"keywords": ["challenge", "interview", "react", "graphql", "rest", "test"],
"author": "Pete Nykänen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/motleyagency/code-challenge/issues"
},
"homepage": "https://motley.fi",
"dependencies": {},
"lint-staged": {
"*.{js,json,graphql,md,css,scss,less,ts}": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-motley": "^9.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"prettier": "^1.12.1"
},
"publishConfig": {
"access": "public"
}
}