-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.15 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
43
44
45
46
47
48
{
"name": "svelte-tailwind-snowpack",
"version": "0.1.0",
"author": {
"name": "Agney Menon",
"email": "agney@outlook.in"
},
"keywords": [
"csa-template"
],
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "web-test-runner \"src/**/*.test.js\""
},
"dependencies": {
"svelte": "^4.2.19",
"tailwindcss": "^2.0.1"
},
"devDependencies": {
"@snowpack/app-scripts-svelte": "^2.0.0",
"@snowpack/plugin-dotenv": "^2.0.4",
"@snowpack/plugin-svelte": "^3.3.0",
"@snowpack/web-test-runner-plugin": "^0.2.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/svelte": "^3.0.0",
"@web/test-runner": "^0.12.15",
"autoprefixer": "^10.0.4",
"chai": "^4.2.0",
"husky": "^5.0.9",
"jest": "^26.4.2",
"lint-staged": "^13.2.1",
"postcss": "^8.2.13",
"postcss-load-config": "^3.1.4",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.1.4",
"snowpack": "^3.0.11",
"svelte-preprocess": "^4.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}