-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 1.18 KB
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
{
"name": "offred",
"version": "0.0.1",
"description": "Off Red is a product design and development duo. We make stuff to satisfy our own curiosities.",
"main": "./dist/your-main-js-file.js",
"engines": {
"node": ">=18.0.0"
},
"author": {
"name": "Putra Bonaccorsi",
"url": "https://offred.co"
},
"repository": {
"type": "git",
"url": "https://github.com/offred/offred.co"
},
"scripts": {
"serve": "cross-env NODE_ENV=development concurrently \"postcss public/css/app.css -o public/build/app.css --watch\" \"live-server ./public\"",
"development": "cross-env NODE_ENV=development postcss public/css/app.css -o public/build/app.css",
"production": "cross-env NODE_ENV=production postcss public/css/app.css -o public/build/app.css"
},
"dependencies": {
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"postcss-calc": "^9.0.1",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.1.5",
"tailwindcss": "^1.9.6"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cssnano": "^6.1.2",
"live-server": "^1.2.2",
"postcss-cli": "^11.0.0"
}
}