-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.32 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@patomation/create-react-app",
"version": "2.0.3",
"description": "A simple react app template that is already ejected with webpack and no crap",
"private": false,
"main": "./scripts/create-react-app.js",
"bin": {
"@patomation/create-react-app": "./scripts/create-react-app.js"
},
"scripts": {
"start": "webpack-dev-server --mode development --open --hot --config ./webpack.dev.config.js",
"build": "webpack --mode production --config ./webpack.prod.config.js",
"test": "jest",
"coverage": "npm run test -- --coverage",
"create-react-app": "node ./scripts/create-react-app.js",
"prepare": "husky install"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^6.27.0"
},
"devDependencies": {
"@babel/core": "7.25.8",
"@babel/preset-env": "7.25.8",
"@babel/preset-react": "7.25.7",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@testing-library/react": "16.0.1",
"@types/jest": "29.5.13",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/webpack-env": "1.18.5",
"ava": "6.1.3",
"babel-loader": "9.2.1",
"concurrently": "9.0.1",
"css-loader": "7.1.2",
"dotenv": "16.4.5",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.6.0",
"husky": "9.1.6",
"jest": "29.7.0",
"jsdom-global": "3.0.2",
"lint-staged": "15.2.10",
"node-fetch": "3.3.2",
"nyc": "17.1.0",
"onchange": "7.1.0",
"prettier": "3.3.3",
"standard-version": "9.5.0",
"style-loader": "4.0.0",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"tsconfigs": "5.0.0",
"typescript": "5.6.3",
"url-loader": "4.1.1",
"webpack": "5.95.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0",
"webpack-merge": "6.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/patomation/react-boilerplate.git"
},
"author": "Patrick Kelly",
"license": "MIT",
"bugs": {
"url": "https://github.com/patomation/react-webpack-boilerplate/issues"
},
"homepage": "https://github.com/patomation/react-webpack-boilerplate#readme",
"public": true,
"types": "build/index.d.ts",
"files": [
"build",
"bin"
],
"keywords": [
"typescript"
],
"ava": {
"files": [
"build/**/*.test.js"
]
}
}