-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 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
77
78
79
80
81
82
83
84
85
86
{
"name": "vcpkg-manifest",
"version": "0.1.0",
"private": true,
"description": "A webpage to generate your vcpkg.json files!",
"main": "server/src/server.ts",
"scripts": {
"build": "concurrently \"cd server && npm run build\" \"cd client && npm run build\" && npm run cpdir && npm run cplibs",
"client": "cd client && npm start",
"cpdir": "npx copyfiles -V -a -u 2 client/build/**/*.* server/dist/build/",
"cplibs": "npx copyfiles -V -a -u 2 server/src/libraries.json server/dist",
"server": "cd server && npm run dev",
"start": "cd server && npm start",
"test": "cd client && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyquid/vcpkg-manifest.git"
},
"keywords": [
"vcpkg",
"manifest",
"json"
],
"author": "Alejandro Castillo Blanco <ketepincho@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lyquid/vcpkg-manifest/issues"
},
"homepage": "https://github.com/lyquid/vcpkg-manifest#readme",
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@fontsource/inconsolata": "^4.5.7",
"@fontsource/roboto-condensed": "^4.5.9",
"@fontsource/roboto-flex": "^4.5.1",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.93",
"@mui/material": "^5.9.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.42",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.21.2",
"express-rate-limit": "^6.5.1",
"i18next": "^21.8.14",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-http-backend": "^1.4.1",
"mongodb": "^4.17.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.33.1",
"react-i18next": "^11.18.1",
"react-responsive": "^9.0.0-beta.10",
"react-scripts": "^5.0.1",
"typescript": "^4.7.4",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"concurrently": "^7.2.2",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.18"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}