-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 917 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": "mykeels-wedding",
"version": "1.0.0",
"description": "A simple webpage for Michael's and Grace's Wedding on the 14th of February, 2021.",
"main": "index.js",
"scripts": {
"build": "npm run copy-files && cross-env NODE_ENV=production npm run compile",
"compile": "postcss src/styles.css -o dist/styles.css",
"dev": "cross-env NODE_ENV=development concurrently \"npm run copy-files -- -w\" \"npm run compile -- --watch\" \"live-server ./dist\"",
"copy-files": "cpx \"src/**/*\" dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "mykeels",
"license": "MIT",
"dependencies": {
"autoprefixer": "^10.2.4",
"postcss": "^8.2.5",
"tailwindcss": "^2.0.2"
},
"devDependencies": {
"concurrently": "^5.3.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"live-server": "^1.2.1",
"postcss-cli": "^8.3.1"
}
}