-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1010 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1010 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
37
38
{
"name": "app",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "$(yarn bin prettier) --write \"**/*.{ts,json}\" --ignore-path .gitignore"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/formidable": "^2.0.5",
"@types/he": "^1.1.2",
"@types/mustache": "^4.2.1",
"@types/nodemailer": "^6.4.6",
"@types/polka": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"polka": "^0.5.2",
"prettier": "^2.7.1",
"typescript": "^4.6.4",
"vite": "^3.1.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mix": "^0.3.1"
},
"dependencies": {
"encrypt-string": "^1.0.0",
"express": "^4.18.1",
"formidable": "^2.0.1",
"he": "^1.2.0",
"jimp": "^0.16.1",
"mustache": "^4.2.0",
"nodemailer": "^6.7.8"
}
}