-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (53 loc) · 1.57 KB
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
{
"name": "cse115",
"version": "1.0.0",
"description": "cse115",
"author": "",
"license": "UNLICENSED",
"engines": {
"node": "v16.15.1",
"npm": "8.12.2"
},
"repository": {
"type": "git",
"url": "none"
},
"devDependencies": {
"@types/google.maps": "^3.50.5",
"bestzip": "*",
"jest-fetch-mock": "^3.0.3"
},
"scripts": {
"install-backend": "cd backend && npm install",
"install-frontend": "cd frontend && npm install",
"start-backend": "cd backend && npm start",
"start-frontend": "cd frontend && npm start",
"install-e2e": "cd e2e && npm install",
"start": "(npm run start-backend) & (npm run start-frontend)",
"zip": "bestzip Assignment8.Submission.zip e2e/tests/* frontend/src/* backend/sql/* backend/src/* backend/api/*",
"postinstall": "(npm run install-backend) && (npm run install-frontend)",
"heroku-postbuild": "cd frontend && npm install && npm run build",
"test": "jest"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/mocks/fileMock.js",
"\\.(css|less)$": "<rootDir>/mocks/fileMock.js"
},
"testEnvironment": "jsdom"
},
"dependencies": {
"cors": "^2.8.5",
"dateformat": "^5.0.3",
"jwt-decode": "^3.1.2",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-places-autocomplete": "^7.3.0",
"react-router": "^6.4.3",
"react-scripts": "^5.0.1",
"supertest": "^6.3.1",
"use-places-autocomplete": "^4.0.0"
},
"main": "index.js",
"keywords": []
}