-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "react-ready",
"version": "1.0.0",
"description": "A simple and light repository to start coding for react in JavaScript or TypeScript ",
"main": "src/index.tsx",
"scripts": {
"dev": "webpack-dev-server --watch",
"build": "webpack-cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hramini/react-ready.git"
},
"keywords": [
"react",
"webpack",
"babel",
"eslint"
],
"author": "Hamidreza Amini",
"license": "MIT",
"bugs": {
"url": "https://github.com/hramini/react-ready/issues"
},
"homepage": "https://github.com/hramini/react-ready#readme",
"dependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"babel-loader": "^9.1.2",
"css-loader": "^6.8.1",
"dotenv": "^16.3.0",
"dotenv-webpack": "^8.0.1",
"file-loader": "^6.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}