-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "beads",
"version": "1.0.0",
"description": "A little Connect4 web implementation",
"main": "./dist/index.html",
"scripts": {
"prebuild": "rm -rf dist",
"build": "esbuild src/index.tsx --bundle --minify --outfile=dist/index.js",
"postbuild": "cp -R src/staticFiles/* dist",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fildon/Beads.git"
},
"author": "Rupert Foggo McKay",
"license": "ISC",
"bugs": {
"url": "https://github.com/fildon/Beads/issues"
},
"homepage": "https://github.com/fildon/Beads#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"ceramic-components": "^1.2.1",
"esbuild": "^0.12.8",
"eslint": "^7.28.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
}
}