-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 894 Bytes
/
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
{
"name": "pathfinding",
"version": "1.0.0",
"description": "pathfinding and maze generation visualizer",
"private": true,
"main": "Main.js",
"scripts": {
"build": " NODE_ENV='production' webpack",
"start": "webpack-dev-server --entry ./src/js/Main.js --output-filename ./dist/bundle.js",
"deploy": "gh-pages -d dist"
},
"author": "Mina Khamesi",
"license": "ISC",
"homepage": "https://MinaKhamesi.github.io/pathfindingVisualizer",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^4.2.1",
"html-webpack-plugin": "^4.3.0",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"gh-pages": "^3.1.0"
}
}