-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "floodit",
"version": "0.0.0",
"description": "Flood It",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/AlphaHydrae/floodit.git"
},
"keywords": [
"floodit",
"game"
],
"author": "Simon Oulevay <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlphaHydrae/floodit/issues"
},
"homepage": "https://github.com/AlphaHydrae/floodit#readme",
"scripts": {
"build": "npm run --workspace frontend build",
"check": "npm run format",
"check:write": "npm run format:write",
"doctoc": "doctoc --github --notitle README.md && prettier --write README.md",
"format": "prettier --config ./.prettierrc.json --check .",
"format:write": "prettier --config ./.prettierrc.json --write .",
"start": "npm run --workspace frontend start",
"test": "npm test --workspace backend"
},
"workspaces": [
"backend",
"frontend"
],
"devDependencies": {
"doctoc": "^2.0.1",
"prettier": "^3.3.3",
"prettier-plugin-java": "^2.6.5"
},
"engines": {
"node": ">= 22",
"npm": ">= 7"
}
}