forked from sammich-dev/sammich-systems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"name": "sammich-system",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"pm2:backoffice": "pm2 start npm --time --name \"backoffice\" -- run backoffice",
"backoffice": "cross-env PORT=3001 tsx ./backoffice/index.ts",
"tournaments-web": "cd tournaments && npm run start",
"scene": "cd scene && npm run start",
"scene:web3": "cd scene && npm run start -- --web3",
"prisma:db-push": "prisma db push",
"prisma:db-pull": "prisma db pull",
"prisma:generate": "prisma generate"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"cross-env": "^7.0.3",
"nodemon": "^2.0.15",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@adminjs/design-system": "^4.0.1",
"@adminjs/express": "^4.1.0",
"@adminjs/passwords": "^2.0.2",
"@adminjs/prisma": "^1.0.3",
"@dcl-sdk/utils": "^1.1.3",
"@dcl/sdk": "^7.3.17",
"@prisma/client": "^3.10.0",
"adminjs": "^5.7.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-basic-auth": "^1.2.1",
"express-formidable": "^1.2.0",
"express-history-api-fallback": "^2.2.1",
"express-session": "^1.17.3",
"prisma": "^3.10.0",
"react": "=16.14.0",
"react-dom": "=16.14.0",
"react-is": "^18.2.0",
"react-json-view": "^1.21.3",
"tsx": "^3.13.0"
}
}