-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.29 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "undistracted-me",
"version": "2.3.1",
"description": "A chrome/firefox extension to show distraction free nepali date on your new tab.",
"main": "index.js",
"repository": "https://github.com/sarojbelbase/undistracted-me",
"author": "sarojbelbase",
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"build": "webpack --config webpack.config.js",
"watch": "webpack -w --config webpack.config.js",
"start:firefox": "web-ext run --source-dir ./dist/",
"build:firefox": "web-ext build --source-dir ./dist/",
"build:chrome": "zip -r dist.zip dist"
},
"dependencies": {
"dayjs": "^1.11.11",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1"
},
"devDependencies": {
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"babel-loader": "^9.1.3",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"copy-webpack-plugin": "^12.0.2",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^4.0.0",
"css-loader": "^7.1.2",
"web-ext": "^8.0.0"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}