-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.23 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
{
"name": "starter-react-webpack",
"version": "1.0.0",
"main": "src/pages/index.tsx",
"repository": "https://github.com/gamliela/starter-react-webpack.git",
"author": "Alon Gamliel <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"react": "16.13.0",
"react-dom": "16.13.0"
},
"devDependencies": {
"@types/react": "16.9.23",
"@types/react-dom": "16.9.5",
"@typescript-eslint/eslint-plugin": "2.23.0",
"@typescript-eslint/parser": "2.23.0",
"css-loader": "3.4.2",
"eslint": "6.8.0",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.0",
"html-webpack-plugin": "3.2.0",
"node-sass": "4.13.1",
"prettier": "1.19.1",
"sass-loader": "8.0.2",
"style-loader": "1.1.3",
"ts-loader": "6.2.1",
"typescript": "3.8.3",
"url-loader": "3.0.0",
"webpack": "4.42.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
},
"scripts": {
"build": "webpack --config webpack/webpack.config.js",
"dev": "webpack-dev-server --config webpack/webpack.config.js",
"lint": "eslint --ignore-path .gitignore './**/*.{ts,tsx,js,jsx}'",
"prettify": "prettier --ignore-path .gitignore --write './**/*.{ts,tsx,js,jsx,json,md}'"
}
}