-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.88 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 4.88 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "apfront",
"version": "1.0.0-beta",
"description": "The official user client for Abstract Play",
"repository": {
"type": "git",
"url": "git+https://github.com/AbstractPlay/front.git"
},
"author": "Aaron Dalton <aaron@daltons.ca> (https://www.perlkonig.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AbstractPlay/front/issues"
},
"private": true,
"engines": {
"node": ">=24",
"npm": "11.6.2"
},
"packageManager": "npm@11.6.2",
"dependencies": {
"@abstractplay/gameslib": "1.0.0-ci-33912589327.0",
"@abstractplay/renderer": "1.0.0-ci-33912110632.0",
"@atlaskit/pragmatic-drag-and-drop": "^1.3.0",
"@tanstack/react-table": "^8.11.2",
"array-move": "^3.0.1",
"aws-amplify": "6.20.0",
"buffer": "6.0.3",
"gifenc": "^1.0.3",
"i18next": "^21.10.0",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.2.0",
"lodash": "^4.17.21",
"nanoid": "^5.1.16",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-colorful": "^5.8.0",
"react-dom": "18.2.0",
"react-easy-sort": "^1.8.0",
"react-helmet-async": "^2.0.5",
"react-i18next": "12.2.0",
"react-joyride": "^2.5.5",
"react-markdown": "8.0.7",
"react-router-dom": "6.30.4",
"react-time-ago": "7.2.1",
"react-toastify": "^9.1.3",
"react-use-storage-state": "^1.0.6",
"react-zoom-pan-pinch": "^3.4.4",
"rehype-raw": "6.1.1",
"remark-gfm": "^3.0.1",
"tiny-invariant": "^1.3.3",
"zustand": "^5.0.15"
},
"devDependencies": {
"@abstractplay/ap-deps-tools": "^1.1.1",
"@google/genai": "^2.19.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "13.5.0",
"@vitejs/plugin-react": "^4.7.0",
"bulma": "^1.0.4",
"cross-env": "7.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"i18next-parser": "7.7.0",
"jsdom": "^29.1.1",
"prettier": "2.8.8",
"sass": "^1.77.5",
"serverless-finch": "4.0.4",
"serverless-single-page-app-plugin": "1.0.4",
"shx": "^0.3.4",
"sitemap": "^7.1.1",
"source-map-explorer": "^2.5.3",
"vite": "^6.4.1",
"vitest": "^4.1.11"
},
"scripts": {
"start": "npm run sync-locales && cross-env VITE_REAL_MODE=local npx vite",
"start-prod": "npm run build-prod && npx serve -s build -l 3000",
"analyze": "npm run sync-locales && cross-env VITE_REAL_MODE=development npx vite build --mode development && npm run analyze:only",
"analyze:only": "source-map-explorer \"build/static/js/*.js\"",
"build-dev": "npm run sync-locales && cross-env VITE_REAL_MODE=development npx vite build --mode development && shx cp src/robots/robots.txt.dev build/robots.txt && shx rm -rf build/locales",
"build-prod": "node bin/gensitemap.mjs && npm run sync-locales && cross-env VITE_REAL_MODE=production npx vite build --mode production && shx cp src/robots/robots.txt.prod build/robots.txt && shx rm -rf build/locales",
"full-dev": "npm run build-dev && npm run deploy && npm run publish-locales",
"full-prod": "npm run build-prod && npm run deploy-prod && npm run publish-locales:prod",
"test": "vitest run",
"test:scripts": "node --test test/scripts/*.test.mjs",
"test:watch": "vitest",
"test:ci": "npm run sync-locales && vitest run && npm run test:engines",
"test:engines": "node bin/test-exploration-contracts.mjs",
"lint": "eslint src bin --ext .js,.jsx,.mjs",
"lint:fix": "eslint src bin --ext .js,.jsx,.mjs --fix",
"sync-locales": "node bin/sync-locales.mjs",
"sync-deps": "ap-install-deps --stage dev",
"sync-deps:prod": "ap-install-deps --stage prod",
"docs:check": "node bin/docs-check.mjs",
"deploy": "serverless client deploy --no-confirm && node bin/sync-cloudfront-csp.mjs --stage dev",
"deploy-prod": "serverless client deploy --no-confirm --stage prod && node bin/sync-cloudfront-csp.mjs --stage prod",
"sync-csp": "node bin/sync-cloudfront-csp.mjs --stage dev",
"sync-csp:prod": "node bin/sync-cloudfront-csp.mjs --stage prod",
"publish-locales": "node bin/publish-locales.mjs --stage dev",
"publish-locales:prod": "node bin/publish-locales.mjs --stage prod",
"translate": "node bin/translate.mjs public/locales/en/apfront.json",
"prune-locales": "node bin/locale-prune.mjs public/locales/en/apfront.json",
"check-weblate-branch": "node bin/check-weblate-branch.mjs",
"merge-weblate-branch": "node bin/merge-weblate-branch.mjs",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"npm-login": "npm login --scope=@abstractplay --auth-type=legacy --registry=https://npm.pkg.github.com",
"build-bulma": "sass --no-source-map --load-path=node_modules src/myBulma.scss src/myBulma.css"
},
"browserslist": [
"defaults"
]
}