-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 749 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 749 Bytes
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
{
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"format": "find . -type f -name '*.js' -not -path './node_modules/*' -not -path './.next/*' -not -path './.git/' | xargs prettier --write --single-quote --trailing-comma es5",
"test": "jest"
},
"dependencies": {
"firebase": "^4.1.2",
"immutability-helper": "^2.2.2",
"jsx-control-statements": "^3.2.5",
"next": "^2.4.3",
"next-redux-wrapper": "^1.1.3",
"react": "^15.6.0",
"react-dom": "^15.6.0",
"react-redux": "^5.0.5",
"redux": "^3.6.0",
"redux-actions": "^2.0.3",
"redux-saga": "^0.15.3"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"jest": "^20.0.4",
"prettier": "^1.4.4"
}
}