-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "react-howdy",
"description": "Howdy, I am the react sheriff",
"version": "1.1.0",
"private": true,
"license": "MIT",
"dependencies": {
"emoji-mart": "^1.0.1",
"freactal": "^1.1.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-copy-to-clipboard": "^5.0.0",
"react-dom": "^15.6.1",
"serve": "^9.2.0",
"styled-bootstrap-responsive-breakpoints": "^4.1.0",
"styled-components": "^2.1.1"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-motley": "^7.2.0",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.13.4",
"lint-staged": "^3.6.1",
"prettier": "^1.5.2",
"react-scripts": "1.0.10"
},
"scripts": {
"start": "serve ./build",
"start-dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"serve": "now",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
}
}