-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 915 Bytes
/
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
{
"name": "mmo",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "ISC",
"author": "MTB3050",
"type": "module",
"main": "index.js",
"scripts": {
"build": "rimraf dist && node build.config.mjs",
"dev": "nodemon --config",
"format": "prettier . --write",
"lint": "eslint src/index.ts",
"syntax": "tsc --noEmit"
},
"nodemonConfig": {
"exec": "npm run build",
"ext": "ts,json",
"ignore": [
"*.d.ts",
"**/types/**"
],
"watch": [
"src/**",
"build.config.mjs"
]
},
"dependencies": {
"html2canvas": "^1.4.1",
"vanie": "^0.0.4",
"windrag": "^2.0.1"
},
"devDependencies": {
"esbuild": "0.21.4",
"eslint": "^9.4.0",
"eslint-plugin-react-refresh": "^0.4.7",
"nodemon": "^3.1.2",
"prettier": "^3.3.0",
"rimraf": "^5.0.7",
"tsx": "^4.11.2",
"typescript": "^5.4.5"
}
}