-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
126 lines (126 loc) · 3.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
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
{
"name": "milaap",
"version": "1.0.0",
"description": "decentralized video/audio conferencing application",
"author": "Team Milaap",
"homepage": "/",
"copyright": "Copyright",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Pranav2612000/milaap.git"
},
"dependencies": {
"@coreui/coreui": "^2.1.12",
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.3.1",
"@coreui/icons": "0.3.0",
"@coreui/react": "^2.5.1",
"axios": "^0.19.2",
"babel-jest": "^26.0.1",
"bootstrap": "^4.3.1",
"chart.js": "^2.8.0",
"classnames": "^2.2.6",
"core-js": "^3.1.4",
"emoji-mart": "^3.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.14.0",
"flag-icon-css": "^3.3.0",
"font-awesome": "^4.7.0",
"jest": "^26.0.1",
"jquery": "^3.5.1",
"node-sass": "^4.14.1",
"peerjs": "^1.3.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-app-polyfill": "^1.0.1",
"react-awesome-button": "^6.5.1",
"react-chartjs-2": "^2.7.6",
"react-dom": "^16.8.6",
"react-notification-system": "^0.4.0",
"react-notification-system-redux": "^2.0.1",
"react-notifications-component": "^2.4.0",
"react-router-config": "^5.0.1",
"react-router-dom": "^5.2.0",
"react-sortablejs": "^2.0.11",
"react-test-renderer": "^16.13.1",
"reactstrap": "^8.0.0",
"simple-line-icons": "^2.4.1",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^8.3.4",
"babel-eslint": "^10.1.0",
"concurrently": "^5.2.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5",
"react-redux": "^7.2.0",
"react-scripts": "^3.4.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^2.3.0",
"simple-peer": "^9.7.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:cov": "npm test -- --coverage --watchAll=false",
"test:debug": "react-scripts --inspect-brk test --runInBand",
"eject": "react-scripts eject",
"server": "node backend/index.js",
"dev": "concurrently \"npm start\" \"npm run server --prefix backend\""
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged --allow-empty"
}
},
"lint-staged": {
"./**/*.js": [
"./node_modules/.bin/eslint . --fix"
]
},
"bugs": {
"url": "https://github.com/pranav2612000/milaap/issues"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 9",
"not op_mini all"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/*index.js",
"!src/serviceWorker.js",
"!src/polyfill.js"
]
},
"engines": {
"node": ">=8.10",
"npm": ">=6"
}
}