-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 980 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 980 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
39
40
41
42
43
44
45
{
"name": "knapsack",
"version": "0.0.1",
"author": "Gianluca Riggio <luca@maximumawesome.nl>",
"scripts": {
"dev": "export APP_ENV=development && vite",
"build": "export APP_ENV=production && vite build"
},
"devDependencies": {
"@types/node": "^18.11.18",
"autoprefixer": "^10.4.14",
"fast-glob": "^3.2.12",
"husky": "4",
"lint-staged": "^10.5.4",
"micromatch": "^4.0.5",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"tailwindcss": "^3.3.1",
"vite": "^4.0.4"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"trailingComma": "all",
"singleQuote": true,
"semi": false,
"arrowParens": "always",
"quoteProps": "consistent",
"bracketSpacing": true,
"overrides": [
{
"files": "resources/**/*.html",
"options": {
"tabWidth": 4
}
}
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {}
}