-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.85 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.85 KB
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
87
88
89
90
91
92
93
94
{
"name": "kr8os",
"version": "1.0.0",
"description": "",
"main": "index.tsx",
"scripts": {
"test": "jest --verbose",
"build": "NODE_ENV=production webpack",
"start": "concurrently \"redis-server\" \"NODE_ENV=production nodemon ./server/server.ts\"",
"dev": "concurrently \"redis-server\" \"nodemon ./server/server.ts\" \"webpack serve --hot --open\"",
"cypress": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/kr8os.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/kr8os/issues"
},
"homepage": "https://github.com/oslabs-beta/kr8os#readme",
"dependencies": {
"@babel/preset-typescript": "^7.21.0",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.10",
"babel-loader": "^9.1.2",
"bootstrap": "^5.3.0-alpha1",
"cors": "^2.8.5",
"css-loader": "^6.7.3",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"ioredis": "^5.3.1",
"nodemon": "^2.0.20",
"react": "^18.2.0",
"react-bootstrap": "^2.7.2",
"react-dom": "^18.2.0",
"react-loader-spinner": "^5.3.4",
"react-pro-sidebar": "^1.0.0",
"react-router-dom": "^6.8.1",
"react-tsparticles": "^2.9.3",
"redis": "^4.6.5",
"tsparticles": "^2.9.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@kubernetes/client-node": "^0.18.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/cors": "^2.8.13",
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^10.0.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/vis": "^4.21.24",
"babel-jest": "^29.5.0",
"concurrently": "^7.6.0",
"cypress": "^12.7.0",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-svg-transformer": "^1.0.0",
"jest-webpack": "^0.5.1",
"raw-loader": "^4.0.2",
"react-graph-vis": "^1.0.7",
"style-loader": "^3.3.1",
"supertest": "^6.3.3",
"svg-inline-loader": "^0.8.2",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"use-resize-observer": "^9.1.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"whatwg-fetch": "^3.6.2"
}
}