-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "peers-for-peers",
"version": "0.1.0",
"description": "Makeshift organisation tool for the p4p unconference",
"main": "src/index.tsx",
"scripts": {
"build": "webpack --mode production",
"lint": "eslint --ext .ts --ext .tsx .",
"serve": "webpack serve --mode development",
"serve:production": "serve ./dist -p 8080",
"start": "npm run serve",
"tauri": "tauri",
"typecheck": "tsc --noEmit"
},
"private": true,
"license": "UNLICENSE",
"dependencies": {
"clsx": "^2.1.1",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"luxon": "^3.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"shirokuma": "^0.1.3"
},
"devDependencies": {
"@tauri-apps/cli": "^1.4.0",
"@types/luxon": "^3.4.2",
"@types/mini-css-extract-plugin": "^2.5.1",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"css-loader": "^7.1.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"prettier": "^3.2.5",
"serve": "^14.2.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"yargs": "^17.7.2"
}
}