-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 887 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 887 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
{
"name": "espeon",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.ts --config ./.prettierrc.json",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^18.11.19",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "2.8.3",
"typescript": "^4.9.5",
"vite": "^4.1.0"
},
"dependencies": {
"rxjs": "^7.8.0",
"vanilla-tilt": "^1.8.0"
}
}