-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.65 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
{
"name": "react-node-insim-app-template",
"version": "0.0.0",
"main": "dist/index.cjs",
"type": "module",
"private": true,
"scripts": {
"dev": "tsx watch src/index.tsx",
"serve:production": "node ./dist/index.cjs",
"build": "tsup-node src/index.tsx --dts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint \"./src/**/*\" --ext .js,.ts",
"lint:fix": "eslint \"./src/**/*\" --ext .js,.ts --fix",
"test": "run-s test:compile \"test:run {@}\" --",
"test:compile": "tsc -p tsconfig.test.json",
"test:run": "vitest",
"checks": "run-s lint:fix format test build"
},
"dependencies": {
"debug": "^4.4.3",
"dotenv": "^17.3.1",
"node-insim": "^6.3.0",
"react": "^18.3.1",
"react-node-insim": "^0.3.2",
"supports-color": "^10.2.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/debug": "^4.1.12",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"files": [
"**/*.js",
"**/*.d.ts"
],
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017"
}