-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.03 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
{
"name": "draw-and-guess",
"version": "0.0.0",
"description": "A mini game",
"main": "index.js",
"scripts": {
"start": "node build/src/index.js",
"test": "eslint",
"dev:web": "parcel --hmr-port 1236 web/index.html",
"dev:server": "ts-node-dev src/index.ts",
"build:server": "tsc -m commonjs",
"build:web": "parcel build web/index.html",
"build": "npm run build:server && npm run build:web",
"analyzer": "parcel build web/index.html --reporter @parcel/reporter-bundle-analyzer"
},
"targets": {
"main": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/EchoInMirror/DrawAndGuess.git"
},
"keywords": [
"game",
"draw",
"guess"
],
"author": "Shirasawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/EchoInMirror/DrawAndGuess/issues"
},
"homepage": "https://github.com/EchoInMirror/DrawAndGuess#readme",
"alias": {
"react": "preact/compat",
"react-dom/test-utils": "preact/test-utils",
"react-dom": "preact/compat",
"react/jsx-runtime": "preact/jsx-runtime"
},
"devDependencies": {
"@parcel/reporter-bundle-analyzer": "^2.2.1",
"@types/node": "^17.0.14",
"@types/react": "^17.0.38",
"@types/react-color": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"ts-node-dev": "^1.1.8"
},
"dependencies": {
"@parcel/transformer-less": "^2.2.1",
"@types/express": "^4.17.13",
"express": "^4.17.2",
"less": "^4.1.2",
"papercss": "^1.8.3",
"parcel": "^2.2.1",
"preact": "^10.6.5",
"react-color": "^2.19.3",
"simple-drawing-board": "^3.1.2",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"tslib": "^1.14.1",
"typescript": "^4.5.5"
}
}