-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.39 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
{
"dependencies": {
"@here/maps-api-for-javascript": "^1.56.0",
"browserify-fs": "^1.0.0",
"common-js": "^0.3.8",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"file-saver": "^2.0.5",
"fs": "^0.0.1-security",
"fs-extra": "^11.2.0",
"react-native": "^0.74.5",
"rollup-plugin-polyfill": "^4.2.0"
},
"name": "optiroutex",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "rollup --config rollup.config.js",
"start-server": "python -m http.server 8000",
"start-flask": "python app.py",
"run-algorithm": "python ./models/algorithm.py",
"wait-server": "wait-on http://localhost:8000",
"run-all": "npm run bundle && concurrently --kill-others \"npm run start-server\" \"npm run start-flask\" \"npm run wait-server && npm run run-algorithm\""
},
"module": "dist/index.es.mjs",
"exports": "./dist/index.es.mjs",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"concurrently": "^8.2.2",
"rollup": "^4.20.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"wait-on": "^7.2.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}