-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.73 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "react-redux-md-starter",
"version": "1.0.0",
"description": "React, redux and MaterialUI starter pack",
"main": "server/server.js",
"scripts": {
"test": "gulp test",
"coverage": "jest -u",
"start": "gulp start",
"linter": "gulp lint",
"server": "gulp serve",
"watcher": "gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YashdalfTheGray/react-redux-md-starter.git"
},
"keywords": [
"react",
"es2015",
"material-ui",
"babel",
"tab",
"redux"
],
"author": "Yash Kulshrestha",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/YashdalfTheGray/react-redux-md-starter/issues"
},
"homepage": "https://github.com/YashdalfTheGray/react-redux-md-starter#readme",
"dependencies": {
"bcrypt": "^1.0.1",
"bluebird": "^3.5.0",
"body-parser": "^1.16.0",
"chalk": "1.1.3",
"express": "4.14.0",
"fixed-data-table": "^0.6.3",
"gulp-import-css": "^0.1.3",
"jsonwebtoken": "^7.2.1",
"lodash": "^4.17.4",
"material-ui": "0.16.1",
"mkdirs": "0.0.2",
"mongo-db": "^1.0.2",
"mongoose": "^4.7.3",
"morgan": "1.7.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"react": "^15.4.1",
"react-dom": "15.4.1",
"react-icons": "^2.2.3",
"react-image-gallery": "^0.7.15",
"react-redux": "4.4.5",
"react-router": "3.0.0",
"react-simpletabs": "^0.7.0",
"react-tabs": "^0.8.2",
"react-tap-event-plugin": "^2.0.1",
"redux": "3.6.0",
"validator": "^6.2.0",
"validator": "^6.2.0",
"react-image-gallery": "^0.7.15",
"gulp-import-css": "^0.1.3",
"recharts": "^0.21.2"
},
"devDependencies": {
"@types/jest": "^19.2.2",
"babel-core": "6.7.6",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babelify": "7.2.0",
"browserify": "13.0.0",
"del": "2.2.0",
"enzyme": "^2.8.0",
"eslint": "3.9.1",
"eslint-plugin-react": "6.6.0",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-eslint": "3.0.1",
"gulp-import-css": "^0.1.3",
"gulp-nodemon": "2.0.6",
"gulp-tape": "0.0.9",
"gulp-util": "3.0.7",
"jest": "^19.0.2",
"jest-cli": "^19.0.2",
"jest-react-native": "^18.0.0",
"nodemon": "1.9.1",
"npm-run-all": "^4.0.2",
"react-addons-test-utils": "^15.5.1",
"react-image-gallery": "^0.7.15",
"react-redux": "^4.4.5",
"react-test-renderer": "^15.4.2",
"redux-devtools": "3.3.1",
"regenerator-runtime": "^0.10.3",
"tap-min": "1.1.0",
"tape": "4.6.2",
"ts-jest": "^19.0.8",
"vinyl-source-stream": "1.1.0"
},
"jest": {
"collectCoverage": true,
"setupTestFrameworkScriptFile": "<rootDir>/__mocks__/localStorage.js",
"bail": true,
"verbose": true,
"modulePaths": [
"<rootDir>/src",
"<rootDir>/server"
],
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
]
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [],
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs"
],
"presets": [
"es2015"
]
}
}
}
}