-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.54 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.54 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
{
"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,
"dependencies": {
"@abstractplay/gameslib": "latest",
"@abstractplay/renderer": "latest",
"@atlaskit/pragmatic-drag-and-drop": "^1.3.0",
"@tanstack/react-table": "^8.11.2",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/user-event": "13.5.0",
"array-move": "^3.0.1",
"aws-amplify": "5.3.12",
"buffer": "6.0.3",
"i18next": "^21.10.0",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.2.0",
"nanoid": "^5.0.5",
"plotly.js": "^2.27.1",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "18.2.0",
"react-easy-sort": "^1.6.0",
"react-helmet-async": "^1.3.0",
"react-i18next": "12.2.0",
"react-joyride": "^2.5.5",
"react-markdown": "8.0.7",
"react-plotly.js": "^2.6.0",
"react-router-dom": "6.10.0",
"react-scripts": "5.0.1",
"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",
"web-vitals": "2.1.4",
"zustand": "^5.0.10"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.0",
"bulma": "^1.0.1",
"cross-env": "7.0.3",
"i18next-parser": "7.7.0",
"prettier": "2.8.8",
"sass": "^1.77.5",
"serverless-finch": "4.0.0",
"serverless-single-page-app-plugin": "1.0.4",
"shx": "^0.3.4",
"sitemap": "^7.1.1",
"source-map-explorer": "^2.5.3"
},
"scripts": {
"start": "cross-env REACT_APP_REAL_MODE=local react-scripts start",
"start-prod": "npm run build-prod && npx serve -s build -l 3000",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"build-dev": "cross-env REACT_APP_REAL_MODE=development react-scripts build --profile && shx cp src/robots/robots.txt.dev build/robots.txt",
"build-prod": "node bin/gensitemap.mjs && cross-env REACT_APP_REAL_MODE=production react-scripts build && shx cp src/robots/robots.txt.prod build/robots.txt",
"full-dev": "npm run build-dev && npm run invalidate && npm run deploy",
"full-prod": "npm run build-prod && npm run invalidate-prod && npm run deploy-prod",
"test": "react-scripts test",
"extract": "i18next 'src/**/*.{js,jsx}'",
"deploy": "serverless client deploy --no-confirm",
"deploy-prod": "serverless client deploy --no-confirm --stage prod",
"invalidate": "aws cloudfront create-invalidation --profile AbstractPlayDev --distribution-id E2FD1T2JUN28HB --paths /*",
"invalidate-prod": "aws cloudfront create-invalidation --profile AbstractPlayProd --distribution-id EZ7B67NVBQ903 --paths /*",
"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": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}