-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.26 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
{
"name": "algorithm-builder-app",
"version": "1.0.0",
"description": "Interactive Algorithm Learning Platform",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"env:check": "node scripts/environment-check.js",
"build": "webpack --mode production && node scripts/build-extension.js",
"test": "node scripts/smoke-test.js && node scripts/mage-first-proof-test.js && node scripts/broker-test.js && node scripts/receipt-authentication-test.js && node scripts/game-command-outbox-test.js && node scripts/extension-static-test.js && node scripts/extension-routing-test.js && node scripts/webmcp-static-test.js",
"docker:build": "docker build -t algorithm-builder .",
"docker:run": "docker run -p 3000:3000 algorithm-builder",
"cpai:start": "powershell -NoProfile -ExecutionPolicy Bypass -File infra/codeproject-ai/start.ps1",
"cpai:health": "node infra/codeproject-ai/client.mjs health",
"cpai:mesh": "node infra/codeproject-ai/client.mjs mesh",
"cpai:stop": "powershell -NoProfile -ExecutionPolicy Bypass -File infra/codeproject-ai/stop.ps1"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"bcrypt": "^6.0.0",
"clsx": "^2.1.1",
"d3": "^7.0.0",
"dotenv": "17.2.2",
"express": "^5.2.1",
"express-oauth2-jwt-bearer": "^1.9.1",
"framer-motion": "^13.1.0",
"jsonwebtoken": "^9.0.3",
"mathjs": "^9.5.0",
"pg": "^8.7.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"socket.io": "^4.8.3",
"tailwind-merge": "^3.6.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/plugin-transform-modules-commonjs": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.4",
"html-webpack-plugin": "^5.6.7",
"nodemon": "^3.1.14",
"style-loader": "^4.0.0",
"webpack": "^5.108.1",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"overrides": {
"brace-expansion": "5.0.9",
"browserslist": "4.28.9",
"fast-uri": "3.1.6",
"nanoid": "3.3.18",
"postcss-selector-parser": "7.1.6",
"qs": "6.16.0",
"socket.io-parser": "4.2.7"
}
}