-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 4.3 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
109
110
{
"name": "fairshots-admin",
"version": "1.0.0",
"description": "Fairshots adminfrontend using React",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --collectCoverageFrom=**/*.js --collectCoverageFrom=!node_modules --coverage",
"start": "cross-env NODE_ENV=development webpack-dev-server --open --mode development",
"build": "cross-env NODE_ENV=production webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leovcunha/fairshots-admin"
},
"keywords": [
"photography",
"non-profit",
"community",
"ngo"
],
"author": "Nando",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/leovcunha/fairshots-admin/issues"
},
"homepage": "https://github.com/leovcunha/fairshots-admin#readme",
"dependencies": {
"@babel/runtime-corejs2": "^7.4.5",
"bootstrap": "^4.3.1",
"chart.js": "^2.9.3",
"react": "^16.8.6",
"react-bootstrap-table-next": "^3.3.3",
"react-bootstrap-table2-filter": "^1.3.0",
"react-bootstrap-table2-paginator": "^2.1.0",
"react-chartjs-2": "^2.8.0",
"react-dom": "^16.8.6",
"react-icons": "^3.6.1",
"react-redux": "^5.0.7",
"react-router-dom": "^5.1.2",
"reactstrap": "^8.0.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.1.2",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-do-expressions": "^7.1.2",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.1.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.12.0",
"prettier": "^1.15.3",
"react-hot-loader": "^4.3.11",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "1.1.2",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.3.1",
"webpack-hot-middleware": "^2.22.3"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js",
"\\.(s?css|less)$": "identity-obj-proxy"
},
"setupTestFrameworkScriptFile": "<rootDir>/src/enzyme.js",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}