forked from fschwalm/my-reads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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": "my-reads",
"authors": [
"Fagner Schwalm da Silva"
],
"homepage": "https://fschwalm.github.io/my-reads/",
"description": "Final project of React Nanodegree fundamentals",
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router-dom": "^4.2.2",
"react-spinners": "^0.1.9",
"react-throttle": "^0.3.0",
"react-toastify": "^2.1.5",
"react-transition-group": "^1.2.1"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"coveralls": "^3.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"enzyme-to-json": "^3.1.4",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"react-scripts": "^1.0.14",
"react-test-renderer": "^16.0.0",
"webpack": "^3.8.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"coverage": "react-scripts test --coverage --env=jsdom",
"coveralls": "npm run coverage && node node_modules/.bin/coveralls < coverage/lcov.info"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
]
}
}