forked from Citizen-Report/citizen-report-app
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
{
"name": "citizen-report-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors",
"dev": "cross-env NODE_ENV=development concurrently \"webpack-dev-server --open\" \"npx nodemon server/server.js\"",
"start": "cross-env NODE_ENV=production npx nodemon server/server.js",
"build": "cross-env NODE_ENV=production npx webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/demircaner/citizen-report-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/windusayles/citizen-report-app/issues"
},
"homepage": "https://github.com/windusayles/citizen-report-app#readme",
"devDependencies": {
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.2",
"enzyme-to-json": "^3.6.1",
"redux-mock-store": "^1.5.4",
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-jsx": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/polyfill": "^7.0.0-beta.51",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^23.4.2",
"supertest": "^6.0.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.11.0",
"webpack-hot-middleware": "^2.25.0"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"css-loader": "^5.0.1",
"express": "^4.17.1",
"nodemon": "^2.0.6",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.5.1",
"react": "^16.14.0",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1",
"react-google-login": "^5.2.1",
"react-google-maps": "^9.4.5",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"selenium-webdriver": "^4.0.0-alpha.8",
"style-loader": "^2.0.0",
"webpack-dev-server": "^3.11.0"
}
}