-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.54 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
{
"name": "skycast",
"version": "1.0.0",
"description": "SkyCast - A JavaScript Makers Project.",
"type": "module",
"scripts": {
"client": "webpack server --mode development",
"server": "nodemon server.js",
"testClient": "playwright test",
"testServer": "node --experimental-vm-modules node_modules/jest/bin/jest.js --setupFiles 'dotenv/config'",
"test": "npm run testClient && npm run testServer",
"dev": "concurrently --kill-others \"npm run server\" \"npm run client\"",
"build": "webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamie6king/skycast.git"
},
"author": "Jamie King",
"homepage": "https://github.com/jamie6king/skycast#readme",
"bugs": {
"url": "https://github.com/jamie6king/skycast/issues"
},
"jest": {
"testMatch": [
"**/tests/jest/*.test.js"
]
},
"dependencies": {
"@photostructure/tz-lookup": "^11.0.0",
"bootstrap": "^5.3.3",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"i18n-iso-countries": "^7.13.0",
"luxon": "^3.5.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.5",
"react-bootstrap-typeahead": "^6.3.2",
"react-country-flag": "^3.1.0",
"react-dom": "^18.3.1",
"react-gauge-component": "^1.2.6",
"react-icons": "^5.3.0",
"react-router-dom": "^6.28.0",
"react-spinners": "^0.14.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/eslint-plugin": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@eslint/eslintrc": "^3.2.0",
"@playwright/test": "^1.49.0",
"babel-loader": "^9.2.1",
"concurrently": "^9.1.0",
"css-loader": "^7.1.2",
"eslint": "^9.15.0",
"eslint-plugin-depend": "^0.12.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-playwright": "^2.0.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"node-sass": "^9.0.0",
"nodemon": "^3.1.7",
"playwright": "^1.48.2",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}