-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.47 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
{
"name": "react-typescript-playground",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"bundle": "webpack",
"start": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production",
"check-types": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"babel-loader": "^8.2.3",
"convert-tsconfig-paths-to-webpack-aliases": "^0.9.2",
"css-loader": "^3.6.0",
"dotenv": "^8.6.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^3.2.0",
"strip-json-comments": "^3.1.1",
"style-loader": "^1.3.0",
"tslint": "^5.19.0",
"tslint-immutable": "^6.0.1",
"typescript": "^3.9.10",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
},
"dependencies": {
"@types/react": "^16.14.21",
"@types/react-dom": "^16.9.14",
"@types/react-router-dom": "^5.3.2",
"bootstrap": "^4.6.1",
"react": "^16.14.0",
"react-bootstrap": "^1.6.4",
"react-dom": "^16.14.0",
"react-intl": "^4.7.6",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.3.0"
}
}