-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "newtab",
"version": "1.1.0",
"description": "Fast and clean new tab page extension.",
"main": "src/index.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config ./webpack.dev.config.js",
"build": "webpack --config ./webpack.prod.config.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"author": "Elio Zhou",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^1.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.4.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3",
"conventional-changelog-cli": "^2.2.2",
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"open-browser-plugin": "^1.3.0",
"sass": "^1.48.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
}
}