-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.87 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "react-anime-project",
"config": {
"lint-paths": "./src ./src/**/*.js ./src/**/*.test.js"
},
"version": "0.1.0",
"author": "Miguel Angel Liriano <mglphp@gmail.com> (https://www.linkedin.com/in/miguelangeliriano)",
"license": "MIT",
"dependencies": {
"material-ui": "^0.19.2",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.13",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"styled-components": "^2.1.2",
"underscore": "^1.8.3"
},
"scripts": {
"start": "NODE_PATH=src react-scripts start",
"build": "react-scripts build",
"test": "NODE_PATH=src react-scripts test --env=jsdom",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint $npm_package_config_lint_paths",
"lint:cache": "eslint --cache $npm_package_config_lint_paths",
"lint:fix": "eslint --fix $npm_package_config_lint_paths",
"doc": "esdoc -c esdoc.json",
"eject": "react-scripts eject"
},
"precommit": [
"lint:cache"
],
"jest": {
"coverageThreshold": {
"global": {
"branches": 10,
"functions": 10,
"lines": 10,
"statements": 10
}
}
},
"devDependencies": {
"babel-eslint": "^8.0.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.2.2",
"esdoc": "^1.0.3",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"fetch-mock": "^5.13.1",
"jest-styled-components": "^4.9.0",
"jsdoc": "^3.5.5",
"pre-commit": "^1.2.2",
"react-test-renderer": "^16.1.1",
"redux-mock-store": "^1.3.0"
}
}