-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 816 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 816 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
{
"name": "design-pattern-css",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"sass": "node-sass pre-processors/sass/main.scss pre-processors/sass/dest/style.css",
"bootstrap": "node-sass libs/bootstrap/main.scss libs/bootstrap/dest/bootstrap.css",
"postcss": "postcss libs/tailwind/main.pcss -o libs/tailwind/dest/tailwind.css",
"tailwind": "tailwindcss -i libs/tailwind/main.pcss -o libs/tailwind/dest/tailwind.css"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^10.4.0",
"bootstrap": "^5.1.3",
"node-sass": "^7.0.0",
"postcss-import": "^14.0.2"
},
"devDependencies": {
"postcss-cli": "^9.1.0",
"tailwindcss": "^3.0.1"
}
}