-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.68 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
{
"private": true,
"name": "planningpoker",
"version": "1.0.0",
"author": "Arthur <[email protected]>",
"license": "Apache-2.0",
"source": "src/index.html",
"browserslist": "> 1% and last 2 versions and not dead",
"scripts": {
"prepare": "test -f .git/hooks/pre-commit || cp scripts/pre-commit .git/hooks/pre-commit",
"format": "prettier . --cache",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0 --cache",
"typecheck": "tsc --noEmit",
"prestart": "test -d node_modules || npm ci",
"start": "parcel",
"prebuild": "npm run format -- --check --loglevel error && npm run lint -- --quiet && npm run typecheck",
"build": "parcel build"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"resetize": "^30.0.1",
"ulid": "^2.3.0",
"wouter": "^2.11.0",
"y-protocols": "^1.0.5",
"y-webrtc": "^10.2.5",
"yjs": "^13.6.1"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.9.1",
"@parcel/transformer-svg-react": "^2.9.1",
"@parcel/transformer-webmanifest": "^2.9.1",
"@types/node": "^20.2.5",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"buffer": "^6.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"parcel": "^2.9.1",
"prettier": "^2.8.8",
"process": "^0.11.10",
"svgo": "^3.0.2",
"typescript": "^5.0.4"
}
}