-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "sudoku",
"version": "1.0.0",
"description": "A visualizer for sudoku solver using backtracking",
"main": "index.js",
"homepage": ".",
"scripts": {
"dev": "webpack serve --hot",
"build": "webpack --mode production",
"start": "webpack serve --mode production",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"author": "Garvit",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.7",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"gh-pages": "^3.2.1",
"html-webpack-plugin": "^4.5.0",
"style-loader": "^2.0.0",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"core-js": "^3.7.0",
"regenerator-runtime": "^0.13.7"
}
}