This repository was archived by the owner on Feb 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.03 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
{
"name": "react-starter-kit",
"version": "1.0.1",
"description": "Template React project",
"private": true,
"main": "src/index.js",
"license": "Apache-2.0",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "npx webpack --mode production"
},
"bugs": "https://github.com/CDCgov/react-starter-kit/issues",
"homepage": "https://github.com/CDCgov/react-starter-kit",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@types/react": "^16.14.25",
"@types/react-dom": "^16.9.15",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-loader": "^8.2.5",
"core-js": "^3.22.2",
"css-loader": "^4.3.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mini-svg-data-uri": "^1.4.4",
"prop-types": "^15.8.1",
"sass": "^1.51.0",
"sass-loader": "^10.2.1",
"style-loader": "^1.0.0",
"ts-loader": "^8.4.0",
"typescript": "^4.6.3",
"url-loader": "^4.1.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {
"bootstrap": "^4.3.1",
"html-react-parser": "^0.14.0",
"react": "^16.11.0",
"react-app-polyfill": "^1.0.4",
"react-dom": "^16.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.0.0"
},
"lint-staged": {
"src/**/**.{js,jsx,ts,tsx}": "eslint src/**/*.{js,jsx,ts,tsx}"
}
}