-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 KB
/
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
{
"name": "html2pug",
"version": "3.5.0",
"description": "Convert HTML to PUG",
"browserslist": "> 0.5%, last 2 versions, not dead",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview --port 8000",
"format": "prettier -w index.html src && yarn lint",
"lint": "eslint src --fix"
},
"author": {
"name": "Nikita Nafranets",
"email": "eddimensi@gmail.com",
"url": "https://dimensi.dev"
},
"license": "MIT",
"dependencies": {
"@types/codemirror": "5.60.5",
"autoprefixer": "^10.4.1",
"codemirror": "5.65.0",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.8",
"typescript": "^4.5.4",
"vite": "^2.7.10",
"xhtml2pug": "^4.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.2.1",
"release-it": "^14.11.8"
}
}