-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.78 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
{
"name": "reactinrush",
"version": "1.1.10",
"description": "Light-weight React Boilerplate for developers in rush",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode=development --open --hot",
"build": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canocalir/reactinrush.git"
},
"keywords": [
"react",
"boilerplate",
"javascript",
"react",
"starter"
],
"author": "Can Ocalir",
"license": "ISC",
"bugs": {
"url": "https://github.com/canocalir/reactinrush/issues"
},
"homepage": "https://github.com/canocalir/reactinrush#readme",
"dependencies": {
"fs-extra": "^10.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.19.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"bin": {
"reactinrush": "./bin/start.js"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-transform-runtime"
]
}
}