-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "peer-blog",
"description": "Peer Blog",
"version": "0.0.0",
"bugs": {
"url": "https://github.com/ipfs-shipyard/peer-blog/issues"
},
"dependencies": {
"faker": "^4.1.0",
"lodash": "^4.17.5",
"query-string": "^4.3.4",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.3",
"redux": "^3.7.2",
"redux-auth-wrapper": "^2.0.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.15.0-rc.13",
"lint-staged": "^7.0.4",
"prettier": "^1.11.1"
},
"homepage": "https://github.com/ipfs-shipyard/peer-blog#readme",
"license": "MIT",
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-shipyard/peer-blog.git"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"eslint": "eslint --fix .",
"lint": "npm run prettier && npm run eslint",
"pre-commit": "lint-staged",
"prettier": "prettier --write \"src/**/*.js\"",
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom"
}
}