-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.02 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
67
68
{
"name": "web",
"version": "0.1.0",
"private": true,
"homepage": "https://negebauer.github.io/react-template",
"scripts": {
"dev": "PORT=8080 react-scripts start",
"start": "yarn build ; source .env && serve -p $PORT -s build",
"build": "source .env && react-scripts build",
"lint": "eslint ./src index.js",
"lint:fix": "eslint --fix ./src index.js",
"test": "react-scripts test --env=jsdom",
"test:coverage": "CI=true react-scripts test --env=jsdom",
"test:ci": "react-scripts test --env=jsdom --coverage --testResultsProcessor=jest-junit",
"deploy:github": "yarn build; gh-pages -d build -m 'Github site deploy'"
},
"dependencies": {
"eslint-plugin-react": "^7.3.0",
"history": "^4.6.3",
"lodash": "^4.17.4",
"popsicle": "^9.1.0",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "^5.1.3",
"react-redux": "^5.0.6",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-router-redux": "^5.0.0-alpha.8",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-persist": "^4.8.3",
"redux-promise-middleware": "4.4.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"styled-components": "^2.1.2"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"enzyme": "3.1.0",
"enzyme-adapter-react-16": "^1.0.3",
"enzyme-to-json": "^3.2.1",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-prettier": "^2.3.1",
"gh-pages": "^1.0.0",
"jest-enzyme": "^4.0.1",
"jest-junit": "^3.1.0",
"prettier": "^1.7.4",
"react-scripts": "1.0.17",
"react-test-renderer": "^16.0.0",
"redux-mock-store": "^1.3.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!<rootDir>/node_modules/",
"!src/index.js"
]
},
"jest-junit": {
"output": "./coverage/junit.xml",
"usePathForSuiteName": "true",
"classNameTemplate": "",
"titleTemplate": "{title}"
}
}