-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.73 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
{
"name": "league-abc",
"version": "1.0.0",
"main": "plugins/abc.js",
"browser": "plugins/abc.js",
"source": "src/index.tsx",
"author": "Douglas Silva ([email protected])",
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.13.0",
"babel-loader": "^9.1.2",
"concurrently": "^7.6.0",
"copy-webpack-plugin": "^11.0.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"express": "^4.18.2",
"prettier": "^2.8.4",
"sass": "^1.58.0",
"sass-loader": "^13.2.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"typescript-plugin-css-modules": "^4.1.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@ant-design/pro-components": "^2.6.43",
"@babel/plugin-transform-react-jsx": "^7.20.13",
"antd": "^5.12.5",
"axios": "^1.3.2",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"preact": "^10.12.1",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"style-loader": "^3.3.1",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"watchStyles": "sass --watch src/assets:assets/",
"watch": "webpack -w --config webpack.dev.js",
"build": "webpack --config webpack.prod.js && sass src/assets:assets/",
"dev": "concurrently \"yarn watch\" \"yarn watchStyles\""
}
}