-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "moviesmap",
"version": "1.0.0",
"type": "module",
"description": "SF movie locations on the map",
"main": "index.js",
"scripts": {
"test": "jest test/",
"test:watch": "jest --watchAll test/",
"build:dev": "rspack --mode development",
"test:e2e": "playwright test",
"build": "rspack build",
"build-n-analyze": "rspack build --analyze",
"start": "vercel dev",
"lint": "biome ci api app lib test ",
"lint-fix": "biome check --write api app lib test && biome format --write api app lib test"
},
"author": "Igor Shevchenko",
"license": "ISC",
"dependencies": {
"@google/maps": "1.1.3",
"@googlemaps/react-wrapper": "1.1.42",
"clone": "2.1.2",
"core-js": "3.40.0",
"express": "4.21.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "8.1.3",
"redux": "4.2.1",
"redux-thunk": "2.4.2"
},
"devDependencies": {
"@babel/core": "7.26.8",
"@babel/preset-env": "7.26.8",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@biomejs/biome": "1.9.4",
"@playwright/test": "1.50.1",
"@rspack/cli": "1.2.2",
"@rspack/core": "1.2.2",
"@types/googlemaps": "3.43.3",
"@types/jest": "29.5.14",
"@types/react-dom": "18.3.5",
"@welldone-software/why-did-you-render": "8.0.3",
"babel-jest": "29.7.0",
"babel-loader": "9.2.1",
"deep-freeze": "0.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"ts-loader": "9.5.2",
"typescript": "5.7.3",
"uuid": "11.0.5",
"vercel": "41.0.3"
},
"jest": {
"testEnvironmentOptions": {
"url": "http://localhost"
},
"testEnvironment": "jsdom"
}
}