-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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
{
"name": "infinityarcade",
"version": "0.0.2",
"description": "Play any game",
"main": "src/index.js",
"scripts": {
"start": "npm run server",
"dev": "npm run watch",
"server": "node src/server.js",
"watch": "nf -j Procfile.dev start",
"build": "npm run build:js && npm run build:css",
"build:js": "rollup -c",
"build:css": "npx tailwindcss -i ./src/app.css -o ./public/app.css",
"watch:server": "nodemon -x npm run server",
"watch:js": "rollup -c --watch",
"watch:css": "npx tailwindcss -i ./src/app.css -o ./public/app.css --watch",
"generate-missing-images": "node scripts/generate_missing_images.js"
},
"keywords": [
"ai",
"arcade"
],
"author": "The Maximalist",
"license": "MIT",
"dependencies": {
"@themaximalist/ai.js": "^0.2.7",
"@themaximalist/prompt.js": "^0.0.3",
"axios": "^1.7.7",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"javascript-time-ago": "^2.5.9",
"marked": "^14.1.3",
"node-fetch": "^2.6.9",
"openai": "^3.2.1",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.31.0",
"sharp": "^0.32.0",
"slugify": "^1.6.6",
"stripe": "^12.1.1",
"tailwindcss": "^3.3.1",
"toml": "^3.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"nodemon": "^3.1.0",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}