-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
68 lines (68 loc) · 2.06 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "lerna run start",
"build": "lerna run build",
"prepare": "husky install",
"predeploy": "npm run build",
"deploy": "lerna run deploy",
"lint": "lerna run lint",
"precommit": "lint-staged"
},
"devDependencies": {
"@babel/preset-react": "^7.17.12",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@linaria/webpack-loader": "^3.0.0-beta.16",
"@p2p-wallet-web/eslint-config-react": "^1.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@rushstack/eslint-patch": "^1.1.0",
"@squoosh/lib": "^0.4.0",
"@types/dotenv-webpack": "^7.0.3",
"@types/node": "^17.0.35",
"@types/webpack": "^5.28.0",
"@types/webpack-bundle-analyzer": "^4.4.1",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^11.0.0",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"dotenv-webpack": "^7.1.0",
"eslint": "^7.32.0",
"eslint-plugin-unused-imports": "^1.1.5",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"https-browserify": "^1.0.0",
"husky": "^7.0.2",
"image-minimizer-webpack-plugin": "^3.2.3",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"lerna": "^4.0.0",
"lint-staged": "^11.2.2",
"mini-css-extract-plugin": "^2.6.0",
"path-browserify": "^1.0.1",
"prettier": "^2.4.1",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"ts-node": "^10.8.0",
"typescript": "^4.5.4",
"webpack": "^5.72.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{js,json,jsx,html,css,md}": "prettier --write"
},
"dependencies": {}
}