-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.14 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
{
"name": "quests-core-skeleton",
"private": true,
"version": "1.0.0",
"type": "module",
"author": {
"name": "Playpower Labs",
"email": "suketu@playpowerlabs.com",
"url": "https://playpowerlabs.com"
},
"scripts": {
"start": "node scripts/menu.js",
"deploy": "node scripts/menu.js",
"vite": "vite",
"build": "tsc -b && VITE_GAME_ID=${VITE_GAME_ID:-calculated-rescue} vite build --base='./'",
"lint": "eslint .",
"preview": "vite preview",
"apply:patch": "patch-package",
"postinstall": "patch-package",
"f": "============= Formatting SCRIPTS =============",
"format": "prettier --write '**/*.{js,ts,tsx,html,css,scss}'",
"format:check": "prettier --check '**/*.{js,ts,tsx,html,css,scss}'",
"cs": "============= COMPILE SCRIPTS =============",
"compile:scripts": "tsc --project tsconfig.scripts.json",
"bs": "============= BUILD SCRIPTS =============",
"build:glossary": "npm run compile:scripts && node scripts/convert-glossary.js",
"build:scorm": "npm run compile:scripts && node scripts/build-scorm.js ${VITE_GAME_ID}",
"build:audio": "npm run compile:scripts && node scripts/generate-audio.js",
"preprocess": "npm run build:glossary",
"ss": "============= START SCRIPTS =============",
"start:calculated-rescue": "npm run preprocess && VITE_GAME_ID=calculated-rescue vite",
"start:launcher": "VITE_GAME_ID=launcher vite",
"ds": "============= DEPLOY SCRIPTS ==============",
"deployS3": "npm run build && npm run build:scorm && ./deploy.sh ${VITE_GAME_ID} --stage=${npm_config_stage:-false}",
"deploy:calculated-rescue": "npm run preprocess && VITE_GAME_ID=calculated-rescue npm run deployS3",
"deploy:launcher": "VITE_GAME_ID=launcher npm run deployS3"
},
"dependencies": {
"animate.css": "^4.1.1",
"better-react-mathjax": "^2.0.3",
"framer-motion": "^11.11.17",
"html-react-parser": "^5.1.18",
"i18next": "^23.16.4",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.13.0",
"scorm-again": "2.5.0",
"vite-plugin-svgr": "^4.2.0",
"@react-three/drei": "^9.99.4",
"@react-three/fiber": "^8.15.16",
"three": "^0.161.0",
"tone": "^15.0.4"
},
"devDependencies": {
"aws-sdk": "^2.1692.0",
"@eslint/js": "^9.11.1",
"@tailwindcss/typography": "^0.5.15",
"@types/archiver": "^6.0.3",
"@types/node": "^20.0.0",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.161.2",
"@vitejs/plugin-react-swc": "^3.5.0",
"archiver": "^5.3.1",
"autoprefixer": "^10.4.20",
"csv-parse": "^5.0.0",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"fast-xml-parser": "^4.0.11",
"glob": "^10.3.3",
"globals": "^15.9.0",
"patch-package": "^8.0.0",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.14",
"typescript": "^5.5.3",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.14",
"vite-plugin-static-copy": "^2.0.0",
"chalk": "^5.4.1",
"inquirer": "^9.3.7"
},
"browserslist": [
"last 2 versions",
"> 1%",
"not dead"
]
}