-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.18 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
{
"name": "practice-react-weather",
"version": "0.1.0",
"description": "Practice React Weather Widget",
"main": "index.html",
"scripts": {
"watch": "npx tsc && ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --hot --progress",
"test": "npx tsc && ./node_modules/.bin/mocha --require @babel/register test/**/*.js"
},
"author": "Ben Atkins",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@babel/register": "^7.25.9",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@types/numeral": "^2.0.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"mocha": "^11.1.0",
"moment": "^2.10.3",
"numeral": "^2.0",
"react": "^19.0",
"react-dom": "^19.0",
"react-skycons": "^0.8.8",
"sass": "^1.85.1",
"sass-loader": "^16.0.5",
"should": "^13.2",
"style-loader": "^4.0.0",
"typescript": "^5.8.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"dependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-react": "^7.26.3",
"babel-loader": "^10.0"
}
}