-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "tailwind-postcss-sass",
"version": "0.1.0",
"description": "Empty clean vanilla tailwind project with postcss and sass setup",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "postcss ./src/main.scss -o ./public/dist/styles.css --watch --verbose",
"serve": "live-server ./public --watch='./public,./dist'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dariusrosendahl/tailwind-postcss-sass.git"
},
"author": {
"name": "Darius Rosendahl",
"email": "[email protected]",
"url": "https://www.doordarius.nl"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dariusrosendahl/tailwind-postcss-sass/issues"
},
"homepage": "https://github.com/dariusrosendahl/tailwind-postcss-sass#readme",
"devDependencies": {
"autoprefixer": "^10.4.4",
"live-server": "^1.2.1",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.1.0",
"postcss-nesting": "^10.1.3",
"postcss-scss": "^4.0.3",
"tailwindcss": "^3.0.23"
}
}