forked from rodrigooler/reactconf-landing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 933 Bytes
/
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
{
"name": "conf",
"version": "0.2.0",
"dependencies": {
"enzyme": "^2.7.1",
"gh-pages": "^0.12.0",
"glamor": "^2.20.25",
"react": "^15.6.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.6.0",
"react-snapshot": "^1.0.4",
"react-svg-morph": "^0.1.10"
},
"devDependencies": {
"husky": "^0.13.4",
"lint-staged": "^3.6.1",
"prettier": "^1.4.4",
"react-scripts": "1.0.7"
},
"homepage": "https://reactconfbr.com.br/",
"lint-staged": {
"*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 80",
"git add"
]
},
"private": false,
"scripts": {
"build": "react-scripts build",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"prepush": "yarn build && yarn deploy",
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom"
}
}