-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 867 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
32
{
"name": "simple-redux-lib",
"version": "1.0.0",
"description": "A simple redux js implementation.",
"main": "app.js",
"scripts": {
"clean": "rm public/bundle.js",
"build": "webpack --mode production",
"start": "webpack serve --mode development",
"predeploy": "npm run build",
"deploy": "gh-pages -d public"
},
"keywords": [
"demystifying redux js"
],
"author": "Zafar Ali",
"license": "ISC",
"homepage": "https://zafarali110.github.io/A-simple-redux-lib/",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"babel-loader": "^8.2.2",
"gh-pages": "^3.1.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}