-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.58 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
{
"name": "react-dashboard",
"version": "1.0.0",
"description": "Selficient react dashboard",
"main": "webpack.config.js",
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageDirectory=\"_coverage\"",
"start": "webpack-dev-server --mode=development",
"start:withnodemon": "./node_modules/.bin/nodemon --watch webpack.config.js --exec \"webpack-dev-server --mode=development\"",
"build": "webpack --mode production",
"docs:generate": "./node_modules/.bin/typedoc --out _documentation/ src/",
"show:coverage": "start _coverage/lcov-report/index.html",
"show:docs": "start _documentation/index.html",
"fix:nodesass": "npm rebuild node-sass"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WyTho/React.git"
},
"author": "Wesley Veenendaal",
"license": "ISC",
"bugs": {
"url": "https://github.com/WyTho/React/issues"
},
"homepage": "https://github.com/WyTho/React#readme",
"dependencies": {
"@material-ui/core": "^3.3.1",
"@material-ui/icons": "^3.0.1",
"@types/chart.js": "^2.7.37",
"axios": "^0.18.0",
"chart.js": "^2.7.2",
"chartjs-plugin-annotation": "^0.5.7",
"chartjs-plugin-datalabels": "^0.4.0",
"chartjs-plugin-style": "^0.3.1",
"deepmerge": "^2.2.1",
"react": "^16.5.2",
"react-chartjs-2": "^2.7.4",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-test-renderer": "^16.6.3",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.9",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.8",
"@types/react-redux": "^6.0.9",
"@types/react-router": "^4.0.31",
"@types/react-router-dom": "^4.3.1",
"awesome-typescript-loader": "^5.2.1",
"classnames": "^2.2.6",
"css-loader": "^1.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"node-sass": "^4.9.3",
"nodemon": "^1.18.7",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.6",
"typings-for-css-modules-loader": "^1.7.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
}
}