forked from CDCgov/react-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.22 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
{
"private": true,
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "npx webpack"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@wordpress/eslint-plugin": "^7.2.1",
"babel-loader": "^8.0.6",
"core-js": "^3.4.1",
"css-loader": "^4.3.0",
"eslint": "^7.9.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"node-sass": "^4.13.0",
"sass-loader": "^10.0.2",
"style-loader": "^1.0.0",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"react-app-polyfill": "^1.0.4",
"bootstrap": "^4.3.1",
"html-react-parser": "^0.14.0",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint src/**/*.js"
]
}
}