-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.75 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.75 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
{
"name": "games",
"version": "1.0.0",
"description": "What’s in the backlog?",
"source": "src/index.html",
"private": true,
"scripts": {
"clean": "del dist/*",
"ts-check": "tsc --project tsconfig.json",
"eslint": "npx eslint --config eslint.config.mjs",
"lint": "prettier --check . && npm run eslint && npm run ts-check",
"test": "npm run lint && jest",
"format": "prettier --write .",
"prestart": "npm run clean && npm run lint",
"start": "parcel",
"prebuild": "npm run clean && npm run lint",
"build": "parcel build --no-cache --public-url /games/",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"author": "Alex Gibson",
"repository": {
"type": "git",
"url": "https://github.com/alexgibson/games.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/alexgibson/games/main/LICENSE.md"
}
],
"bugs": {
"url": "https://github.com/alexgibson/games/issues/issues"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"del-cli": "^7.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"gh-pages": "^6.3.0",
"globals": "^17.4.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"parcel": "^2.16.4",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
}
}