-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.87 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
{
"name": "bite-share",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --env=jsdom --coverage",
"react-dev": "webpack --watch",
"start": "nodemon server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boc-zoolander/bite-share.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/boc-zoolander/bite-share/issues"
},
"homepage": "https://github.com/boc-zoolander/bite-share#readme",
"dependencies": {
"axios": "^0.21.4",
"bootstrap": "^5.1.1",
"css-loader": "^6.3.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jquery": "^3.6.0",
"pg": "^8.7.1",
"pg-format": "^1.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"socket.io": "^4.2.0",
"socket.io-client": "^4.2.0",
"style-loader": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@testing-library/dom": "^8.6.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"axios-mock-adapter": "^1.20.0",
"babel": "^6.23.0",
"babel-loader": "^8.2.2",
"dotenv-webpack": "^7.0.3",
"enzyme": "^3.11.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.2",
"jest": "^27.2.0",
"jest-dom": "^4.0.0",
"nodemon": "^2.0.12",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
},
"jest": {
"setupFiles": [
"./tests/setupTests.js"
],
"verbose": true
}
}