-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.91 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"license": "UNLICENSED",
"scripts": {
"start": "DEV=1 webpack serve --host 0.0.0.0",
"build": "gulp build",
"build:prod": "gulp build:prod",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:functions": "cd functions && npm test",
"test:app": "jest --testPathIgnorePatterns=functions",
"codecov": "codecov",
"cy:open": "cypress open",
"cy:run": "cypress run",
"start-cy-testing": "npm start --project=cypress-testing",
"cy:test": "start-server-and-test start-cy-testing http://0.0.0.0:8080 cy:run",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@babel/runtime": "^7.3.1",
"@sentry/react": "^10.41.0",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/pdfmake": "^0.2.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-redux": "^7.1.0",
"@types/react-router-dom": "^4.3.0",
"ajv": "^8.18.0",
"ajv-keywords": "^5.1.0",
"babel-jest": "^30.2.0",
"babel-loader": "^10.0.0",
"binary-search": "^1.3.6",
"css-loader": "^7.1.4",
"csv-parse": "^6.1.0",
"csv-stringify": "^6.6.0",
"cypress": "^15.11.0",
"del": "^8.0.1",
"firebase": "^12.10.0",
"gulp": "^5.0.1",
"gulp-env": "~0.4.0",
"gulp-rename": "^2.1.0",
"gulp-through": "^0.4.0",
"history": "^4.7.2",
"html-webpack-plugin": "^5.6.5",
"ignore-styles": "^5.0.1",
"immutability-helper": "^3.1.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"moment": "^2.22.2",
"moment-timezone": "^0.6.0",
"pdfmake": "^0.3.5",
"prop-types": "^15.6.1",
"qrcode-svg": "^1.1.0",
"ramda": "^0.32.0",
"react": "^18.3.1",
"react-day-picker": "^7.1.9",
"react-dom": "^18.3.1",
"react-redux": "^9.2.0",
"react-router-dom": "^4.2.2",
"redux": "^5.0.1",
"redux-saga": "^1.4.2",
"scroll-into-view": "^1.16.2",
"start-server-and-test": "^2.1.5",
"stream-browserify": "^3.0.0",
"style-loader": "^4.0.0",
"styled-components": "^6.3.11",
"typescript": "^5.0.0",
"util": "^0.12.5",
"webpack": "^5.105.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-stream": "^7.0.0",
"workbox-webpack-plugin": "^7.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/odch/flightbox.git"
},
"dependencies": {
"final-form": "^5.0.0",
"i18next": "^25.8.13",
"process": "^0.11.10",
"react-final-form": "^7.0.0",
"react-i18next": "^16.5.4"
}
}