-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.5 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
{
"name": "yogi-ai",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"type": "module",
"dependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/material": "^6.1.8",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"concurrently": "^9.1.0",
"cors": "^2.8.5",
"css-loader": "^7.1.2",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"html-webpack-plugin": "^5.6.3",
"jest-environment-jsdom": "^29.7.0",
"openai": "^4.73.0",
"pg": "^8.13.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"style-loader": "^4.0.0"
},
"scripts": {
"start": "node server/server.js",
"build": "webpack --mode production",
"dev": "webpack serve --open --port 8080",
"devc": "concurrently \"npm:dev\" \"nodemon server/server.js\"",
"test": "jest",
"testc": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AaronJacobs/yogi-ai.git"
},
"author": "Anna Kempel, Aaron Jacobs, Alex Grimm, Mason Meyer",
"license": "ISC",
"bugs": {
"url": "https://github.com/AaronJacobs/yogi-ai/issues"
},
"homepage": "https://github.com/AaronJacobs/yogi-ai#readme",
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}