This repository was archived by the owner on Apr 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.92 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
{
"name": "winterloop",
"version": "0.3.0",
"main": "index.js",
"targets": {
"main": false
},
"scripts": {
"frontend": "parcel serve index.html --port 4321",
"backend": "node server.mjs",
"start": "concurrently \"npm run frontend\" \"npm run backend\" --kill-others",
"build": "parcel build --dist-dir build --no-source-maps --public-url . index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/semvis123/winterloop.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/semvis123/winterloop/issues"
},
"homepage": "https://github.com/semvis123/winterloop#readme",
"description": "",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@faker-js/faker": "^7.6.0",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.7",
"@mui/styles": "^5.11.2",
"@parcel/transformer-inline-string": "^2.8.2",
"@types/jquery": "^3.5.16",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"body-parser": "^1.20.1",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"glob": "^8.0.3",
"jquery": "^3.6.3",
"mysql2": "^3.1.0",
"notistack": "^2.0.8",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-list": "^0.8.17",
"react-virtualized-auto-sizer": "^1.0.7",
"react-virtuoso": "^4.0.3",
"react-window": "^1.8.8",
"sass": "^1.57.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.8.2",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.31.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"node-sass": "^8.0.0",
"parcel": "^2.8.2",
"typescript": "^4.9.4"
},
"alias": {
"process": {
"global": "{}"
}
}
}