-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.39 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
101
102
103
{
"author": {
"name": "UPBGE Team",
"url": "https://upbge.org"
},
"license": "MIT",
"name": "upbge-web",
"version": "1.0.0",
"description": "The home page of UPBGE game engine",
"repository": "https://github.com/UPBGE/upbge.github.io",
"dependencies": {
"@heroicons/react": "^1.0.5",
"@popperjs/core": "^2.10.2",
"html-to-react": "^1.4.7",
"npm-check-updates": "^11.8.5",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-device-detect": "^2.1.2",
"react-tabs": "^3.2.3",
"react-dom": "^17.0.2",
"react-highlight-words": "^0.17.0",
"react-lazyload": "^3.2.0",
"react-router-dom": "^5.3.0",
"react-router-hash-link": "^2.4.3",
"react-spinners": "^0.12.0-alpha.2",
"react-syntax-highlighter": "^15.4.4",
"tailwind-scrollbar": "^1.3.1",
"tailwind-styled-components": "^2.0.3",
"tailwindcss": "^2.2.17",
"yarn": "^1.22.17"
},
"main": "index.js",
"browserslist": [
"> 0.25%",
"not dead"
],
"scripts": {
"start": "webpack serve --config config/webpack.dev.js",
"build": "NODE_ENV=production webpack --config config/webpack.prod.js",
"prettify": "yarn prettier \"**/*.*js\" --ignore-path=.prettierignore --write",
"lint": "eslint src --ext .js && yarn prettify",
"lint-fix": "eslint src --ext .js --fix && yarn prettify",
"clone-docs": "git clone --depth=1 https://github.com/UPBGE/UPBGE-Docs-build.git docs/manual && git clone --depth=1 https://github.com/UPBGE/UPBGE-API.git docs/api && git clone --depth=1 https://github.com/UPBGE/UPBGE-Docs-0.2.5-build.git docs/manual_api_0.2.5",
"predeploy": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged --verbose"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix"
]
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-object-assign": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@emotion/babel-plugin": "^11.3.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"autoprefixer": "^10.3.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"core-js": "^3.18.3",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.4.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.4",
"mini-css-extract-plugin": "^2.4.3",
"postcss": "^8.3.11",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.2.0",
"prettier": "^2.4.1",
"react-refresh": "^0.10.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0",
"whatwg-fetch": "^3.6.2"
}
}