-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.78 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "website",
"description": "IU is the Best",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://github.com/hgballesteros/snowpack-react-typescript-tailwind",
"repository": {
"type": "git",
"url": "https://github.com/hgballesteros/snowpack-react-typescript-tailwind.git"
},
"keywords": [
"csa-template",
"snowpack",
"react",
"tailwindcss",
"tailwind",
"ts",
"typescript"
],
"scripts": {
"start": "npm run generate-css-types & snowpack dev",
"build": "snowpack build",
"test": "web-test-runner \"src/**/*.test.tsx\"",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
"postinstall": "npm run generate-css-types",
"generate-css-types": "tailwindcss-classnames --config tailwind.config.js -o src/tailwindcss-classnames.ts"
},
"dependencies": {
"classnames": "^2.2.6",
"react": "^17.0.0",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"tailwindcss": "^2.0.2",
"tailwindcss-classnames": "^1.9.0"
},
"devDependencies": {
"@snowpack/plugin-dotenv": "^2.0.5",
"@snowpack/plugin-postcss": "^1.0.11",
"@snowpack/plugin-react-refresh": "^2.3.9",
"@snowpack/plugin-typescript": "^1.1.1",
"@snowpack/web-test-runner-plugin": "^0.1.5",
"@testing-library/react": "^11.0.0",
"@types/chai": "^4.2.13",
"@types/classnames": "^2.2.11",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/snowpack-env": "^2.3.2",
"@web/test-runner": "^0.10.0",
"autoprefixer": "^10.1.0",
"chai": "^4.2.0",
"postcss": "^8.2.1",
"postcss-cli": "^8.3.1",
"prettier": "^2.0.5",
"snowpack": "^2.18.5",
"typescript": "^4.0.0"
}
}