-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.13 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
{
"name": "react-ts-boilerplate",
"version": "1.0.0",
"description": "react typescript boilerplate",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./dist/**",
"start": "cross-env NODE_ENV=development webpack-dev-server",
"build:dev": "cross-env NODE_ENV=development ./node_modules/.bin/webpack --progress",
"build:prod": "cross-env NODE_ENV=production ./node_modules/.bin/webpack --progress",
"_babel_": "./node_modules/.bin/babel --out-file bundle.js src/index.tsx",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --debug \"src/**/*.{js,jsx,ts,tsx}\"",
"analyze": "webpack --profile --json > ./docs/webpack-profile-stats.json && webpack-bundle-analyzer --mode=static --report=./docs/webpack-profile-report.html ./docs/webpack-profile-stats.json"
},
"repository": {
"type": "git"
},
"author": "yonggwan",
"license": "ISC",
"bugs": {
"url": "https://github.com/yonggwan/react-ts-boilerplate/issues"
},
"homepage": "https://github.com/yonggwan/react-ts-boilerplate#readme",
"dependencies": {
"cross-env": "^7.0.2",
"react": "18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-typescript": "^7.10.4",
"@material-ui/core": "^4.11.0",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"@types/webpack-bundle-analyzer": "^3.8.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.2.2",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"file-loader": "^6.1.0",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"prettier": "^2.1.1",
"react-jss": "^10.9.2",
"source-map-loader": "^1.1.0",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}