forked from AxaFrance/react-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·72 lines (72 loc) · 2 KB
/
package.json
File metadata and controls
executable file
·72 lines (72 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "react-starter",
"version": "0.1.0",
"private": true,
"dependencies": {
"@axa-fr/react-toolkit-all": "^1.2.1",
"@axa-fr/react-toolkit-core": "^1.2.1",
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"babel": "6.23.0",
"babel-jest": "24.8.0",
"babel-loader": "8.0.6",
"babel-plugin-require-context-hook": "1.0.0",
"classnames": "^2.2.6",
"core-js": "^3.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest-fetch-mock": "^2.1.2",
"jest-sonar-reporter": "2.0.0",
"lodash": "^4.17.11",
"moment": "2.24.0",
"node-sass": "^4.11.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"react-scripts": "3.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest --no-cache --verbose --config ./jest.config.json",
"test:coverage": "react-scripts test --coverage",
"eject": "react-scripts eject",
"lint": "./node_modules/.bin/eslint ./src/",
"lint:fix": "./node_modules/.bin/eslint ./src/ --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"babel-eslint": "10.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.8.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^2.2.0",
"prettier": "^1.17.0"
},
"rootDir": "./"
}