-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·108 lines (108 loc) · 3.04 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-calendar",
"version": "1.0.0",
"description": "calendar component with redux",
"main": "index.js",
"dependencies": {
"axios": "^0.18.0",
"compression": "^1.7.2",
"express": "^4.16.3",
"express-history-api-fallback": "^2.2.1",
"prop-types": "^15.5.8",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-loadable": "^5.4.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"styled-components": "^3.2.6"
},
"devDependencies": {
"axios-mock-adapter": "^1.8.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-dynamic-import-webpack": "^1.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.11",
"css-loader": "^0.28.11",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"expect": "^22.4.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^3.2.0",
"ignore-styles": "^5.0.1",
"jest": "^22.4.3",
"jest-dom": "^1.0.0",
"jsdom": "^11.8.0",
"mocha": "^5.1.1",
"node-sass": "^4.5.0",
"path": "^0.12.7",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^4.1.0",
"react-test-renderer": "^16.3.2",
"react-testing-library": "^2.1.1",
"redux-immutable-state-invariant": "^2.0.0",
"redux-mock-store": "^1.2.2",
"sass-lint": "^1.10.2",
"sass-loader": "^7.0.1",
"sasslint-webpack-plugin": "^1.0.4",
"style-loader": "^0.17.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.1",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.2"
},
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js --mode=development",
"test": "jest",
"lint": "eslint ./assets/js/*/**.js*",
"build": "webpack --config webpack.prod.js --mode=production",
"server": "node server/server.js"
},
"pre-commit": [
"test",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alexfqc/react-calendar.git"
},
"author": "Alessander Franca",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexfqc/react-calendar/issues"
},
"homepage": "https://github.com/alexfqc/react-calendar#readme",
"keywords": [
"react",
"calendar",
"redux",
"holiday"
],
"jest": {
"testRegex": "test/.+\\.spec\\.(js|jsx)$",
"setupTestFrameworkScriptFile": "./test/helpers/setup.js",
"coverageThreshold": {
"global": {
"branches": 10,
"functions": 10,
"lines": 10,
"statements": -10
}
}
}
}