-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.52 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
{
"name": "digital-clock-new-tab-extension",
"version": "1.0.5",
"description": "Digital Clock in browser's New Tab",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\""
},
"author": "Sergey Yakunin <s@yakunins.com>",
"repository": {
"type": "git",
"url": "https://github.com/yakunins/digital-clock-new-tab-extension.git"
},
"dependencies": {
"mobx": "^6.13.5",
"mobx-react": "^9.1.1",
"nanoid": "^5.0.8",
"react-aria-components": "^1.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-led-digit": "^0.0.6"
},
"devDependencies": {
"@types/chrome": "^0.0.283",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"glob": "^11.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"typescript-plugin-css-modules": "^5.1.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
}
}