-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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
{
"name": "clzzi-react-ts-boilerplate",
"version": "1.3.0",
"description": "It's React & Typescript Boilerplate that easy to handle,",
"scripts": {
"dev": "webpack serve --config ./config/webpack.config.dev.js --mode development --env development",
"build": "webpack --config ./config/webpack.config.prod.js --mode production --env production"
},
"bin": {
"clzzi-react-ts-boilerplate": "./bin/generate-app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Clzzi/react-typescript-boilerplate.git"
},
"keywords": [
"clzzi",
"react",
"typescript",
"boilerplate",
"webpack",
"eslint",
"prettier"
],
"author": "Clzzi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Clzzi/react-typescript-boilerplate/issues"
},
"homepage": "https://github.com/Clzzi/react-typescript-boilerplate#readme",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@svgr/webpack": "^5.5.0",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.4.0",
"dotenv-webpack": "^7.0.3",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.3.4",
"html-webpack-plugin": "^5.4.0",
"style-loader": "^3.3.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"url-loader": "^4.1.1",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
}
}