-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.08 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.08 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
55
56
57
58
59
60
61
62
{
"name": "jumptonext",
"version": "0.2.0",
"description": "",
"author": "Juha Malinen",
"license": "MIT",
"scripts": {
"start": "REACT_APP_USE_DB=prod node server.js",
"try": "react-dotenv && REACT_APP_USE_DB=prod react-scripts start",
"dev": "react-dotenv && REACT_APP_USE_DB=test react-scripts start",
"cypress:open": "cypress open",
"build": "npm install && react-scripts build --prod",
"test:e2e": "cypress run",
"test": "react-scripts test --transformIgnorePatterns \"node_modules/(?!react-leaflet)/\"",
"coverage": "set CI=true && react-scripts test --watchAll --coverage --transformIgnorePatterns \"node_modules/(?!react-leaflet)/\"",
"eject": "react-scripts eject"
},
"dependencies": {
"@apollo/client": "^3.8.1",
"@reduxjs/toolkit": "^1.9.5",
"bootstrap": "^5.3.1",
"enzyme": "^3.11.0",
"express": "^4.21.2",
"express-favicon": "^2.0.4",
"graphql": "^16.8.1",
"leaflet": "^1.9.4",
"path": "^0.12.7",
"react": "18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.2.0",
"react-dotenv": "^0.1.3",
"react-leaflet": "^4.2.1",
"react-redux": "^8.1.2",
"react-scripts": "^5.0.1",
"redux": "^4.2.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@apollo/react-testing": "^4.0.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-modules-commonjs": "^7.22.11",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"cypress": "^13.1.0",
"prettier": "3.0.2",
"waait": "^1.0.5",
"mockdate": "^3.0.5",
"jest": "29.6.4"
}
}