-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.42 KB
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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "newtab",
"version": "1.2.1",
"description": "New Tab Page",
"homepage": "https://github.com/JudgmentJay/newtab",
"license": "UNLICENSED",
"private": true,
"author": {
"name": "Jay Posten",
"email": "jdposten@gmail.com",
"url": "https://www.jayposten.com/"
},
"main": "index.jsx",
"scripts": {
"dev": "webpack serve --config webpack.dev.js --open",
"build": "webpack --config webpack.prod.js"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions"
],
"dependencies": {
"axios": "^1.7.9",
"classnames": "^2.5.1",
"prop-types": "^15.7.2",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.18.0",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss-loader": "^8.1.1",
"sass": "^1.83.1",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
}
}