-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.26 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
{
"name": "material-magic",
"version": "0.4.0",
"description": "Admin Dashboard Project using following stack: Typescript + Webpack + React + Redux + React-Router v4 + Material UI",
"main": "server.js",
"license": "MIT",
"scripts": {
"build:webpack": "cross-env NODE_ENV=production webpack --config config/webpack.prod.config.js --progress --profile --colors",
"build": "npm run clean && npm run build:webpack",
"clean": "rimraf build",
"start": "npm run clean && webpack-dev-server --config config/webpack.dev.config.js --progress --profile --colors --port 3000",
"test": "npm run clean && jest",
"test:watch": "npm test -- --watch",
"lint": "tslint -p tsconfig.json",
"server": "node server.js",
"heroku-postbuild": "npm run build:webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/ranjithprabhuk/material-magic.git"
},
"bugs": {
"url": "https://github.com/ranjithprabhuk/material-magic/issues"
},
"homepage": "https://material-magic-dashboard.herokuapp.com",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"setupFiles": [
"./config/test.shim.js",
"./config/test.setup.js"
],
"setupTestFrameworkScriptFile": "./config/test.setup.ts",
"testRegex": "/*.spec.(ts|tsx|js)$"
},
"devDependencies": {
"@material-ui/core": "^1.4.3",
"@material-ui/icons": "^2.0.1",
"@types/classnames": "^2.2.6",
"@types/enzyme": "^3.1.6",
"@types/es6-promise": "^3.3.0",
"@types/jest": "^22.0.1",
"@types/lodash": "^4.14.64",
"@types/material-ui": "^0.21.1",
"@types/node": "^9.6.15",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.34",
"@types/react-dom": "^16.0.3",
"@types/react-redux": "^5.0.14",
"@types/react-router-dom": "^4.0.4",
"@types/react-router-redux": "^5.0.1",
"@types/react-test-renderer": "^16.0.0",
"@types/recharts": "^1.0.21",
"@types/redux-devtools": "^3.0.42",
"@types/redux-mock-store": "^0.0.13",
"classnames": "^2.2.6",
"cross-env": "^5.1.6",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"express": "^4.15.3",
"html-loader": "^0.5.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.0.3",
"node-sass": "^4.9.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-hot-loader": "^4.1.0",
"react-test-renderer": "^16.2.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.5.0",
"redux-mock-store": "^1.2.3",
"rimraf": "^2.6.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"ts-jest": "^22.0.1",
"ts-loader": "^4.3.0",
"tslint": "^5.3.2",
"tslint-loader": "^3.5.3",
"typescript": "^2.6.2",
"webpack": "^4.12.0",
"webpack-cli": "^2.0.14",
"webpack-dev-middleware": "^3.1.2",
"webpack-dev-server": "^3.1.3",
"webpack-hot-middleware": "^2.18.0"
},
"dependencies": {
"lodash": "^4.17.4",
"react-redux": "^5.0.5",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"recharts": "^1.1.0",
"redux": "^3.6.0",
"rmat-kit": "^0.4.0"
}
}