-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "firecards",
"version": "0.1.0",
"description": "FireCards",
"private": true,
"dependencies": {
"date-fns": "^1.28.5",
"firebase": "^4.1.2",
"firebaseui": "^2.2.0",
"react": "^15.6.0",
"react-dom": "^15.6.0",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-saga": "^0.15.3",
"redux-saga-firebase": "^0.2.0",
"semantic-ui-css": "^2.2.10",
"semantic-ui-react": "^0.68.5"
},
"devDependencies": {
"enzyme": "^2.8.2",
"firebase-tools": "^3.9.1",
"react-scripts": "1.0.7",
"react-test-renderer": "^15.5.4",
"redux-mock-store": "^1.2.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"test:coverage": "npm test -- --coverage",
"postinstall": "node ./scripts/postinstall.js",
"deploy": "npm run build && firebase deploy"
},
"author": "Ryan Sullivan <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:ryansully/firecards.git"
},
"bugs": {
"url": "https://github.com/ryansully/firecards/issues"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/[a-z]*.js"
]
}
}