-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.53 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
{
"name": "foogle",
"version": "1.0.0",
"description": "An app that helps you find information about restaurants in your current location, or at a specified location. After creating an account, you can save restaurants to your favourites list!",
"main": "index.js",
"scripts": {
"start": "run-p start:react start:python",
"flush": "python ./project/manage.py flush --no-input",
"e2e": "cypress open --project ./project/frontend/",
"start:python": "python ./project/manage.py runserver",
"start:react": "webpack --mode development ./project/frontend/src/index.js --output ./project/frontend/static/frontend/main.js --watch",
"build": "webpack --mode production ./project/frontend/src/index.js --output ./project/frontend/static/frontend/main.js",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lawcia/Foogle.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.10.4",
"cypress": "^3.8.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"jest-mock-axios": "^4.2.0",
"npm-run-all": "^4.1.5",
"redux-immutable-state-invariant": "^2.1.0",
"redux-mock-store": "^1.5.4"
},
"bugs": {
"url": "https://github.com/lawcia/Foogle/issues"
},
"homepage": "https://github.com/lawcia/Foogle#readme",
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.10.4",
"axios": "^0.21.2",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^3.6.0",
"dotenv-webpack": "^1.8.0",
"geolib": "^3.3.1",
"immer": "^9.0.6",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-bulma-components": "^3.4.0",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-toastify": "^6.0.8",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"style-loader": "^1.2.1",
"url-loader": "^3.0.0",
"weak-key": "^1.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
},
"setupFiles": [
"./project/frontend/src/setupTests.js"
],
"testPathIgnorePatterns": [
"cypress"
]
}
}