-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"private": true,
"name": "react-example-01",
"version": "1.0.0",
"description": "React + TypeScript + Webpack + CSS Modules",
"main": "index.js",
"scripts": {
"test": "npm run test:types",
"test:types": "tsc --noEmit",
"build": "npm run build:prod",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production"
},
"author": "Andrey Volynkin",
"license": "MIT",
"browserslist": [
"> 1% and last 2 years and last 2 version and not dead and not IE 11 and not OperaMini all",
"last 3 Firefox versions",
"last 3 Chrome versions"
],
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.0",
"mini-css-extract-plugin": "^1.4.0",
"typescript": "^4.2.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
}
}