-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 894 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
{
"name": "vite-vanilla-ts-boilerplate",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"lint": "eslint ."
},
"author": {
"name": "Muhammad Ahsan Ayaz",
"email": "[email protected]",
"url": "https://codewithahsan.dev"
},
"repository": {
"url": "https://github.com/appliedtechnology/vite-vanilla-ts-boilerplate.git"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"vite": "^4.3.9"
}
}