-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "day.js.uy",
"version": "0.2.0",
"description": "JSDay Uruguay 2017",
"main": "index.js",
"repository": "https://github.com/js-uy/day.js.uy",
"author": "<[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next --port 3001",
"deploy":
"next build && next export -o ./dist && touch ./dist/.nojekyll && echo 'day.js.uy' > ./dist/CNAME && gh-pages --dist dist --dotfiles",
"start": "next start",
"precommit": "lint-staged"
},
"dependencies": {
"moment": "^2.19.1",
"next": "^3.0.6",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-ga": "^2.3.5",
"react-headroom": "^2.1.6",
"react-responsive": "^1.3.4",
"react-view-pager": "^0.5.1",
"shuffle-array": "^1.0.1",
"socket.io-client": "^2.0.3",
"styled-components": "^2.1.2"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.2.0",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"lint-staged": "^4.1.3",
"prettier": "^1.6.1"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"*.{js,json,css}": ["prettier --write", "git add"]
}
}