-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "runway-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start:api": "node ./server/main.cjs",
"start": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@octokit/rest": "^17.3.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@vitejs/plugin-react": "^4.3.3",
"aewx-metar-parser": "^1.0.0",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"lucide-react": "^0.456.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-hotjar": "^5.0.0",
"react-router-dom": "^5.2.0",
"request": "^2.88.2",
"spacetime": "^6.16.2",
"vite": "^5.4.10",
"xml2js": "^0.4.23"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.14"
}
}