-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1018 Bytes
/
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
43
44
45
46
47
{
"name": "pomodoro-tailwind-alpine",
"version": "0.1.3",
"private": true,
"description": "Pomodoro timer built with tailwind and alpinejs",
"scripts": {
"dev": "snowpack dev",
"build": "snowpack build",
"test": "cypress run",
"cy:open": "cypress open",
"format": "prettier --write ."
},
"keywords": [
"pomodoro",
"alpinejs",
"tailwindcss"
],
"author": {
"name": "Anton Alekseev",
"email": "hi@aalekseev.me",
"url": "https://aalekseev.me"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"license": "ISC",
"prettier": {
"printWidth": 120
},
"devDependencies": {
"@snowpack/plugin-postcss": "^1.0.11",
"autoprefixer": "^10.1.0",
"cypress": "^6.2.0",
"husky": "^4.3.6",
"postcss": "^8.2.1",
"postcss-cli": "^8.3.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"snowpack": "^2.18.5"
},
"dependencies": {
"alpinejs": "^2.8.0",
"tailwindcss": "^2.0.2"
}
}