-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 KB
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
{
"name": "react-movie-search",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react": "^16.1.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"redux": "^3.7.2",
"styled-components": "^2.2.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest --setupFiles='./tests/jest.config.js' --env=jsdom",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"eject": "react-scripts eject",
"lint": "eslint ./src/**/*.js, ./src/**/*.jsx"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"enzyme-to-json": "^3.2.2",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.1",
"jest-styled-components": "^4.9.0",
"jsdom": "^11.3.0",
"pre-commit": "^1.2.2",
"raf": "^3.4.0",
"sinon": "^4.1.2"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"verbose": false
}
}