-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 896 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 896 Bytes
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
{
"name": "untitled-app",
"version": "0.1.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"lint": "eslint . --fix && prettier --write . && sort-package-json",
"serve": "yarn vite",
"release": "yarn vite build && gh-pages -d src/dist && rm -rf src/dist"
},
"type": "module",
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"antd": "^5.22.5",
"eslint-config-tyler": "^0.2.2",
"gh-pages": "^6.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markplus": "^0.2.5",
"sass-embedded": "^1.83.0",
"sort-package-json": "^2.12.0",
"ttpt": "^0.13.0",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vitest": "^2.1.8",
"yarn-upgrade-all": "^0.7.4"
},
"yarn-upgrade-all": {
"ignore": [
"react",
"react-dom"
]
}
}