forked from calumari/fivem-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.88 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.88 KB
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
{
"name": "react-fivem",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.prod.js --color -p --progress --hide-modules --display-optimization-bailout",
"build:clean": "rimraf ./build",
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack/webpack.dev.js --open",
"lint": "eslint src/**/**.js",
"lint:fix": "eslint src/**/**.js --fix",
"lint:staged": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1",
"prettify": "prettier --write **/*.js"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "git+https://github.com/2277/react-fivem.git"
},
"keywords": [
"fivem",
"react"
],
"author": "2277",
"license": "MIT",
"bugs": {
"url": "https://github.com/2277/react-fivem/issues"
},
"homepage": "https://github.com/2277/react-fivem#readme",
"dependencies": {
"@babel/polyfill": "^7.8.3",
"@material-ui/core": "^4.9.2",
"@material-ui/icons": "^4.9.1",
"cross-env": "^5.2.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.7",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"ifdef-loader": "^2.1.4",
"image-webpack-loader": "^4.6.0",
"lint-staged": "^8.2.1",
"prettier": "^1.19.1",
"rimraf": "^2.7.1",
"style-loader": "^0.23.1",
"svg-url-loader": "^2.3.3",
"terser-webpack-plugin": "^1.4.3",
"url-loader": "^1.1.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3",
"webpack-fx-manifest": "git+https://github.com/BlueSky-Development/webpack-fx-manifest.git"
}
}