-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
60
61
62
63
64
65
66
67
68
69
{
"name": "@mosaic/client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sentry/node": "^5.27.4",
"@sentry/react": "^5.27.4",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.2.2",
"@tippyjs/react": "^4.2.0",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.9",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"bgio-postgres": "^1.0.8",
"boardgame.io": "^0.39.13",
"classnames": "^2.2.6",
"concurrently": "^5.3.0",
"easy-peasy": "^3.3.1",
"i18next": "^19.8.4",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-parser": "^3.3.0",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"koa2-connect-history-api-fallback": "^0.1.3",
"ky": "^0.25.0",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-i18next": "^11.7.3",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.0",
"sass": "^1.29.0",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0",
"typescript": "~3.9.7"
},
"scripts": {
"start": "concurrently npm:server npm:client",
"start:prod": "npm run server:prod",
"build": "react-scripts build",
"test": "react-scripts test",
"client": "react-scripts start",
"server": "ts-node-dev --no-notify -O '{\"module\": \"commonjs\"}' ./server/index.ts",
"server:prod": "ts-node -T -O '{\"module\": \"commonjs\"}' ./server/index.ts",
"extract-messages": "i18next 'src/**/*.{tsx,ts}'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {}
}