-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.78 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.78 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "map2online",
"version": "1.0.0",
"description": "Map2Online is online service intended to be used for planning trips and travels",
"main": "src/index.tsx",
"type": "module",
"packageManager": "pnpm@7.14.1",
"scripts": {
"dev": "webpack serve --color --progress --config webpack.config-dev.cjs",
"build": "webpack --config webpack.config-prod.cjs",
"stats": "webpack --config webpack.config-stats.cjs --profile --json >stats.json",
"lint": "eslint --fix src",
"test": "mocha -r tests/mocks/jsdom.cjs tests/mocha/**/*.spec.ts",
"test:catalog": "mocha -r tests/mocks/jsdom.cjs tests/mocha/catalog/**/*.spec.ts",
"test:exporter": "mocha -r tests/mocks/jsdom.cjs tests/mocha/exporter/**/*.spec.ts",
"test:ui": "mocha -r tests/mocks/jsdom.cjs tests/mocha/ui/**/*.spec.ts",
"testcafe": "testcafe chrome testcafe/** --app \"http-server ./dist -s\"",
"test:react": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand"
},
"repository": {
"type": "git",
"url": "git@bitbucket.s4y:s4ysolutions/map2online.git"
},
"author": "S4Y",
"license": "ISC",
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@testing-library/jest-dom": "^5.16.5",
"@types/chai": "^4.3.3",
"@types/chai-arrays": "^2.0.0",
"@types/google.maps": "^3.50.3",
"@types/is-url": "^1.2.30",
"@types/jest": "^29.2.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.3",
"@types/ol": "^6.5.3",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.21",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^18.0.6",
"@types/resize-observer-browser": "^0.1.7",
"@types/sax": "^1.2.4",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"chai": "^4.3.6",
"chai-arrays": "^2.2.0",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.24.0",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-perf": "^3.3.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"jsdom": "20.0.1",
"jsdom-global": "3.0.2",
"ky": "^0.31.4",
"mini-css-extract-plugin": "^2.6.1",
"mocha": "^10.0.0",
"npm-watch": "^0.11.0",
"react-refresh": "^0.14.0",
"react-refresh-typescript": "^2.0.7",
"resize-observer-polyfill": "^1.5.1",
"sass-loader": "^13.1.0",
"sinon": "^14.0.1",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"buffer": "^6.0.3",
"file-saver": "^2.0.5",
"fileapi": "^2.2.0",
"firebase-tools": "^11.15.0",
"framer-motion": "^7.5.3",
"html-entities": "^2.3.3",
"idb": "^7.1.0",
"image-extensions": "^1.1.0",
"is-url": "^1.2.4",
"node-sass": "^7.0.3",
"normalize.css": "^8.0.1",
"ol": "^7.1.0",
"proj4": "^2.8.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"reset-css": "^5.0.1",
"resize-sensor": "0.0.6",
"rxjs": "^7.5.7",
"sax": "^1.2.4",
"slate": "^0.82.1",
"slate-history": "^0.66.0",
"slate-react": "^0.83.1",
"uuid": "^9.0.0"
}
}