-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.32 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
{
"name": "all-stereotypes-are-wrong",
"version": "3.1.1",
"description": "A game about diversity",
"main": " ",
"repository": "[email protected]:iwazaru/all-stereotypes-are-wrong.git",
"author": "Clément Bourgoin <[email protected]>",
"license": "MIT",
"engines": {
"node": "18"
},
"scripts": {
"install:server": "yarn --cwd \"./server\"",
"install:client": "yarn --cwd \"./client\"",
"postinstall": "yarn install:server && yarn install:client",
"dev:client": "BROWSER=none yarn --cwd \"./client\" start",
"dev:server": "yarn --cwd \"./server\" dev",
"dev": "concurrently \"yarn dev:client\" \"yarn dev:server\"",
"build": "yarn --cwd \"./client\" build",
"start": "yarn --cwd \"./server\" start",
"lint": "eslint client/src",
"test": "yarn playwright test"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"concurrently": "^5.0.0",
"eslint": "^7",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x"
},
"dependencies": {
"react-select": "^3.1.0"
}
}