-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.38 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
{
"name": "bingo",
"version": "1.0.1",
"description": "JavaScript based Bingo game developed using TDD approach unit testing with Mocha and Chai. Backend with React/Express/NodeJS and MongoDB for database.",
"main": "src/app.js",
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.js?$": "babel-jest"
},
"setupFiles": [
"./setupJest.js",
"jest-canvas-mock"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mihailgaberov/bingo.git"
},
"keywords": [
"javascript",
"js",
"react",
"tdd",
"bingo",
"game"
],
"author": "Mihail Gaberov",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"dotenv": "^2.0.0",
"express-jwt": "^6.0.0",
"jsonwebtoken": "^9.0.0",
"node-fetch": "^2.6.7",
"passport": "^0.3.2",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.7.6",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.1.5",
"@testing-library/react": "^9.4.0",
"autoprefixer": "^10.4.16",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babelify": "^10.0.0",
"bootstrap-sass": "^3.3.7",
"browserify": "^16.2.3",
"classnames": "^2.2.5",
"del": "^2.2.2",
"event-emitter-es6": "^1.1.5",
"express": "^4.17.3",
"fbemitter": "^2.1.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^6.0.0",
"gulp-jest": "^4.0.3",
"gulp-mocha": "^9.0.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^5.1.0",
"gulp-server-livereload": "^1.8.4",
"gulp-sourcemaps": "^1.12.1",
"immutable": "^3.8.2",
"invariant": "^2.2.4",
"jest-canvas-mock": "^2.2.0",
"jest-cli": "^29.6.1",
"jest-fetch-mock": "^3.0.0",
"mongoose": "^5.13.20",
"paper": "^0.12.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"vanilla-modal": "^1.6.5",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1"
},
"bugs": {
"url": "https://github.com/mihailgaberov/bingo/issues"
},
"homepage": "https://github.com/mihailgaberov/bingo#readme"
}