-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 871 Bytes
/
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
{
"name": "react-typescript-context-provider-example",
"version": "1.0.0",
"description": "An example app using Typescript, React, createContext, useReducer, and a custom hook.",
"main": "src/index.tsx",
"repository": "[email protected]:dckesler/react-typescript-context-provider-example.git",
"author": "Daniel Kesler <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack serve --mode production",
"analyze-bundle": "webpack --profile --json > stats.json && webpack-bundle-analyzer stats.json ./public/"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
}
}