-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "github-dashboard",
"version": "1.4.1",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "ts-node src/server.ts",
"start:prod": "ts-node-transpile-only src/server.ts",
"test": "npm run test:prettier",
"test:prettier": "prettier --check index.html **/*.{ts,tsx,css}",
"fix:prettier": "prettier --write index.html **/*.{ts,tsx,css}"
},
"dependencies": {
"@octokit/graphql": "^5.0.0",
"@reduxjs/toolkit": "^1.8.3",
"classnames": "^2.3.1",
"dotenv": "^16.0.1",
"env-var": "^7.1.1",
"express": "^4.18.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.2",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.6.1",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"prettier": "^2.7.1",
"typescript": "^4.4.4",
"vite": "^2.7.2"
},
"prettier": {
"trailingComma": "all",
"quoteProps": "consistent",
"printWidth": 100,
"singleQuote": true
}
}