-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1023 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1023 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
{
"name": "jech-platform",
"version": "1.0.0",
"description": "Jech - Linguagem de Programação Educacional",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"dev:vite": "vite",
"build:vite": "vite build",
"lint": "eslint \"js/**/*.js\"",
"lint:fix": "eslint \"js/**/*.js\" --fix",
"format": "prettier --write \"**/*.{js,html,css,json,md}\"",
"format:check": "prettier --check \"**/*.{js,html,css,json,md}\"",
"check": "npm run lint && npm run format:check",
"fix": "npm run lint:fix && npm run format"
},
"keywords": [
"jech",
"programming-language",
"educational",
"webassembly"
],
"author": "João Lucas",
"license": "MIT",
"devDependencies": {
"@astrojs/sitemap": "^3.7.0",
"@tailwindcss/vite": "^4.2.1",
"astro": "^5.18.0",
"autoprefixer": "^10.4.27",
"eslint": "^8.57.0",
"postcss": "^8.5.8",
"prettier": "^3.2.5",
"tailwindcss": "^4.2.1",
"vite": "^7.3.1"
}
}