-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (27 loc) · 773 Bytes
/
package.json
File metadata and controls
28 lines (27 loc) · 773 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
{
"name": "landing-pages",
"version": "1.0.0",
"description": "beautiful landing pages",
"main": "index.js",
"scripts": {
"start:tailwind": "cross-env NODE_ENV=development tailwindcss --postcss -i tailwind.css -o tailwind-runtime.css -w",
"build:tailwind": "cross-env NODE_ENV=production tailwindcss --postcss -i tailwind.css -o tailwind-build.css --minify",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"landing",
"pages",
"motion",
"design",
"websites"
],
"author": "Roniui",
"license": "MIT",
"devDependencies": {
"tailwindcss": "^3.4.1"
},
"dependencies": {
"postcss": "^8.4.33",
"postcss-simple-vars": "^7.0.1"
}
}