-
Notifications
You must be signed in to change notification settings - Fork 287
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 903 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 903 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
{
"name": "kint",
"description": "Kint - debugging helper for PHP developers",
"contributors": [
{
"name": "Jonathan Vollebregt",
"url": "https://github.com/jnvsor",
"email": "jnvsor@gmail.com"
}
],
"license": "MIT",
"type": "module",
"private": true,
"devDependencies": {
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"prettier": "^3",
"sass": "^1"
},
"scripts": {
"format:js": "prettier --write resources/js/**",
"build:js": "esbuild resources/js/main.js --bundle --minify --outfile=resources/compiled/main.js",
"build:js:test": "esbuild resources/js/main.js --bundle --outfile=resources/compiled/main.js",
"format:sass": "prettier --write resources/sass/**",
"build:sass": "sass -s compressed --no-source-map resources/sass/:resources/compiled/",
"analyze:js": "eslint resources/js/**"
}
}