-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.64 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.64 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-template",
"version": "1.0.0",
"description": "A template for making React apps",
"main": "index.js",
"author": "Jeffrey D Whitaker",
"license": "MIT",
"private": false,
"scripts": {
"start": "env NODE_ENV=development webpack-dev-server --config webpack.dev.js --open",
"build": "env NODE_ENV=production webpack --config webpack.prod.js",
"test": "jest"
},
"dependencies": {
"axios": "^0.20.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@testing-library/react": "^11.0.4",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"dotenv-webpack": "^3.0.0",
"eslint": "^7.9.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^3.1.0",
"jest": "^26.4.2",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-notifier-2": "^2.1.0"
},
"prettier": {
"endOfLine": "lf",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"arrowParens": "always"
},
"eslintConfig": {
"extends": "react-app"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/react"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
}
}