-
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.16 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.16 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": "aoc-2023",
"version": "0.0.1",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "vite serve",
"build": "vite build",
"run-day": "nodemon --experimental-specifier-resolution=node src/ts-code/2025/day-2.ts",
"lint": "eslint ./src/**/*.{js,jsx} --quiet",
"lint-fix": "eslint --fix ./src/**/*.{js,jsx}"
},
"author": "TurkeyDev",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.41.0",
"eslint-plugin-functional": "^5.0.8",
"eslint-plugin-react": "^7.32.2",
"ts-loader": "^9.4.3",
"tsutils": "^3.21.0",
"typescript": "^5.0.4",
"vite": "^4.3.9"
},
"dependencies": {
"@fontsource/ubuntu": "^5.0.5",
"gobble-lib-react": "^1.0.108",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2",
"styled-components": "^5.3.11",
"ts-node": "^10.9.1"
}
}