-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 3.42 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "workspace-manager-for-chrome",
"version": "0.0.1",
"description": "A sample Chrome Extension that utilizes workspace-api-for-chrome.",
"author": "tomzhu1024",
"license": "MIT",
"repository": "https://github.com/tomzhu1024/webpack-boilerplate",
"private": true,
"scripts": {
"prepare": "npx husky install",
"start": "npx node utils/start.js",
"build": "npx node utils/build.js",
"build:analyzer": "npx cross-env ANALYZER=true npx node utils/build.js",
"type-check": "npx tsc --noEmit",
"lint": "npm run eslint && npm run stylelint",
"lint:fix": "npm run eslint:fix && npm run stylelint:fix",
"eslint": "npx eslint src/**/*.{js,jsx,ts,tsx}",
"eslint:fix": "npx eslint --fix src/**/*.{js,jsx,ts,tsx}",
"stylelint": "npx stylelint src/**/*.{css,less}",
"stylelint:fix": "npx stylelint --fix src/**/*.{css,less}",
"prettier": "npx prettier --check src/**/*.{js,jsx,ts,tsx}",
"prettier:fix": "npx prettier --write src/**/*.{js,jsx,ts,tsx}"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@hot-loader/react-dom": "^17.0.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"@soda/friendly-errors-webpack-plugin": "^1.8.0",
"@types/chrome": "^0.0.146",
"@types/jquery": "^3.5.6",
"@types/lodash": "^4.14.171",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@types/react-router-dom": "^5.1.8",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"antd": "^4.16.7",
"antd-dayjs-webpack-plugin": "^1.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"commitlint-config-gitmoji": "^2.2.5",
"copy-webpack-plugin": "^9.0.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"css-loader": "^6.0.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"dayjs": "^1.10.6",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.1",
"jquery": "^3.6.0",
"lerna": "^4.0.0",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"lint-staged": "^11.0.1",
"lodash": "^4.17.21",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^2.1.0",
"mobx": "^6.3.2",
"mobx-react": "^7.2.0",
"portfinder": "^1.0.28",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-refresh": "^0.10.0",
"react-router-dom": "^5.3.0",
"ssestream": "~1.0.1",
"style-loader": "^3.1.0",
"stylelint": "^13.13.1",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-standard": "^22.0.0",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"uuid": "^8.3.2",
"webpack": "^5.58.2",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0",
"webpackbar": "^5.0.0-3"
},
"workspaces": [
"packages/*"
]
}