generated from cloud-city-crafted/react-typescript-webpack-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.73 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
{
"name": "react-typescript-webpack-template",
"version": "1.0.0",
"description": "A React + TypeScript + Webpack Project Template",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/cloud-city-crafted/react-typescript-webpack-template.git"
},
"scripts": {
"build": "webpack --config webpack.production.js",
"start": "webpack serve --config webpack.development.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"react",
"reactjs",
"typescript",
"webpack",
"webpack5",
"jest",
"react-typescript",
"react-webpack",
"webpack-typescript"
],
"author": "Cloud City Crafted, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloud-city-crafted/react-typescript-webpack-template/issues"
},
"homepage": "https://github.com/cloud-city-crafted/react-typescript-webpack-template#readme",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.36",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.3",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0",
"pyodide": "^0.20.0",
"error-stack-parser": "^2.1.4"
}
}