-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "driverless-cockpit",
"version": "1.0.0",
"description": "Real-time data-visualizations for a self-driving racing car",
"main": "api/index.js",
"engines": {
"node": "^20.12.1"
},
"scripts": {
"api:start": "node .",
"frontend:build": "webpack --config ./frontend/webpack.config.js",
"frontend:dev": "webpack serve --config ./frontend/webpack.config.js",
"dev": "concurrently \"npm:api:start\" \"npm:frontend:dev\""
},
"author": "Martin Schön",
"license": "ISC",
"dependencies": {
"bootstrap": "^4.0.0",
"bootstrap-vue": "^2.0.0-rc.2",
"echarts": "^4.1.0",
"jquery": "^3.3.1",
"jshashes": "^1.0.7",
"konva": "^2.0.2",
"vue": "^2.5.2",
"vue-resource": "^1.5.0",
"vue-router": "^3.0.1",
"vue-slider-component": "^2.6.1",
"vue-switches": "^2.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.11.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"express": "^4.18.3",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.1",
"sass": "^1.74.1",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.4",
"uuid": "^9.0.1",
"vue-loader": "^15.11.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}