-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.97 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
{
"name": "y",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "webpack --mode=development",
"build": "webpack --mode=production && node server/index.js",
"dev": "webpack serve --open",
"server-dev": "npx nodemon --watch server server/index.js",
"client-dev": "npx webpack --watch",
"server-prod": "node server/index.js",
"analyze-bundle": "webpack --profile --json > stats.json",
"open-bundle": "webpack-bundle-analyzer stats.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Logarithmically-Laurels/LLFEC.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Logarithmically-Laurels/LLFEC/issues"
},
"homepage": "https://github.com/Logarithmically-Laurels/LLFEC#readme",
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/icons-material": "^5.10.2",
"@mui/material": "^5.10.2",
"axios": "^0.27.2",
"compression-webpack-plugin": "^10.0.0",
"date-fns": "^2.29.2",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"jest-environment-jsdom": "^29.0.1",
"nodemon": "^2.0.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scroll": "^1.8.7"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"enzyme": "^3.11.0",
"install": "^0.13.0",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"jest-watch-select-projects": "^2.0.0",
"jsdom": "^20.0.0",
"msw": "^0.45.0",
"npm": "^8.18.0",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
}
}