-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 952 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
{
"name": "figma-to-code-ui",
"version": "2.0.0",
"description": "UI redesign for the Figma to Code plugin, written in Tailwind",
"main": "index.html",
"scripts": {
"serve": "cross-env NODE_ENV=development concurrently \"postcss tailwind.css -o styles.css --verbose --watch\" \"live-server --open=index.html --watch=index.html --no-css-inject\"",
"dev": "cross-env NODE_ENV=development postcss tailwind.css -o styles.css -w --verbose",
"build": "cross-env NODE_ENV=production postcss tailwind.css -o styles.css"
},
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^9.8.6",
"feather-icons": "^4.28.0",
"highlight.js": "10.5.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"cssnano": "^4.1.11",
"live-server": "^1.2.1",
"postcss": "^8.2.15",
"postcss-cli": "^8.3.1",
"tailwind-scrollbar": "^1.3.0",
"tailwindcss": "^2.1.2"
}
}