-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "Evoly-Map-WebApp",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"engines": {
"node": "18.x"
},
"scripts": {
"watch:build": "webpack -w",
"watch:server": "nodemon dist/server.js",
"dev": "npm-run-all --parallel watch:*",
"start": "node dist/server.js",
"postinstall": "webpack"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.297.0",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/mapbox-gl": "^2.7.10",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"compression": "^1.7.4",
"css-loader": "^6.7.3",
"express": "^4.18.2",
"mapbox-gl": "^2.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"sass": "^1.59.3",
"sass-loader": "^13.2.1",
"style-loader": "^3.3.2",
"svg-url-loader": "^8.0.0",
"terser-webpack-plugin": "^5.3.7",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"aws-sdk": "^2.1340.0",
"nodemon": "^2.0.21",
"npm-run-all": "^4.1.5"
}
}