-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
{
"name": "react-node-boilerplate",
"version": "1.0.0",
"description": "React Node Boilerplate is a MERN stack with GraphQL.",
"scripts": {
"dev": "lerna exec -- npm run --parallel dev",
"lint": "eslint '**/*.{js,jsx}'",
"lint:fix": "npm run lint -- --fix",
"test": "lerna run --parallel test",
"install:all": "npm install && lerna bootstrap"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.0",
"lerna": "^3.15.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint"
],
"*.{js,jsx,json,md}": [
"prettier --list-different"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/IgorMCesar/react-node-boilerplate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/IgorMCesar/react-node-boilerplate/issues"
},
"homepage": "https://github.com/IgorMCesar/react-node-boilerplate#readme",
"dependencies": {}
}