-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 3.46 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
{
"name": "bentobox-download",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rd /s /q dist>nul 2>&1|echo .>nul",
"prebuild": "yarn clean",
"build": "tsc --project tsconfig.compile.json && webpack --config webpack.config.cjs --env env=production",
"start": "cd dist && node index.js",
"dev": "yarn clean && tsc --project tsconfig.compile.json && webpack --config webpack.config.cjs --env env=development && yarn start",
"site": "webpack --config webpack.config.cjs --env env=development && yarn start"
},
"keywords": [],
"author": "Fredthedoggy",
"license": "MIT",
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.14.5",
"@fortawesome/fontawesome-free": "^5.15.3",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@octokit/plugin-throttling": "^3.5.1",
"@tailwindcss/custom-forms": "^0.2.1",
"@types/archiver": "^5.1.1",
"@types/express": "^4.17.13",
"@types/jenkins": "^0.23.2",
"@types/mime-types": "^2.1.0",
"@types/node-cron": "^2.0.4",
"@types/react-router-dom": "^5.1.8",
"@types/styled-components": "^5.1.11",
"archiver": "^5.3.0",
"axios": "^0.21.1",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jenkins": "^0.28.1",
"mime-types": "^2.1.31",
"node-cron": "^3.0.0",
"octokit": "^1.1.0",
"react": "^17.0.2",
"react-async": "^10.0.1",
"react-dom": "^17.0.2",
"react-hook-form": "^7.12.2",
"react-markdown": "^6.0.3",
"react-router-dom": "^5.2.0",
"remark-breaks": "^2.0.2",
"sequelize": "^6.6.5",
"source-map-loader": "^3.0.0",
"sqlite3": "^5.0.2",
"styled-components": "^5.3.0",
"swr": "^0.5.6",
"tailwind": "^4.0.0",
"tailwindcss": "^2.2.7",
"twin.macro": "^2.6.2"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.16",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.4",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.1",
"prettier": "^2.2.1",
"react-refresh": "^0.10.0",
"style-loader": "^2.0.0",
"typescript": "^4.3.5",
"webpack": "^5.34.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"babelMacros": {
"twin": {
"preset": "styled-components"
}
}
}