-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.7 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
70
71
72
73
74
75
76
77
78
79
{
"name": "chess-opening-master",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:sky10p/chessopeningmaster.git",
"author": "Pablo Guijarro <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --stream",
"build:common": "lerna run build:common --scope @chess-opening-master/common --stream",
"start:front:dev": "lerna run start:dev --scope @chess-opening-master/frontend --stream",
"start:backend:dev": "lerna run start:dev --scope @chess-opening-master/backend --stream",
"start:backend:prod": "lerna run start:prod --scope @chess-opening-master/backend --stream",
"start:dev": "concurrently \"yarn start:front:dev\" \"yarn start:backend:dev\"",
"start:prod": "concurrently \"yarn start:front:prod\" \"yarn start:backend:prod\"",
"front:tsc:noEmits": "lerna run tsc:noEmits --scope @chess-opening-master/frontend --stream",
"develop:components": "lerna run develop:components --scope @chess-opening-master/frontend --stream",
"test": "lerna run test --stream",
"lint": "lerna exec -- eslint . --ext .ts,.tsx --ignore-path .eslintignore"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@types/cors": "^2.8.13",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"babel-loader": "^9.1.2",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.38.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.5.0",
"lerna": "^8.1.9",
"mini-css-extract-plugin": "^2.7.5",
"mongodb-memory-server": "^8.12.2",
"style-loader": "^3.3.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4",
"url-loader": "^4.1.1",
"webpack": "^ 5.79.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.3"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@ladle/react": "^4.1.2",
"chess.js": "^1.0.0-beta.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongodb": "^5.2.0",
"react": "^18.2.0",
"react-chessboard": "^2.1.3",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0",
"typeface-roboto": "^1.1.13"
},
"volta": {
"node": "20.11.1",
"yarn": "1.22.19"
}
}