-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.04 KB
/
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
29
30
31
32
{
"name": "new_home_page",
"version": "1.0.0",
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"postbuild": "npm run copy-static-files",
"copy-static-files": "node ./copy-static-files.js",
"dev": "parcel serve -p 3000 ./src/html/index.pug",
"build": "NODE_ENV=production parcel build src/html/index.pug",
"format": "npx prettier --write \"**/*.pug\" --plugin=\"@prettier/plugin-pug\"",
"format:check": "npx prettier --check \"**/*.pug\" --plugin=\"@prettier/plugin-pug\"",
"test": "node --test tests/*test.js"
},
"devDependencies": {
"@parcel/optimizer-css": "^2.12.0",
"@parcel/transformer-css-experimental": "^2.3.2",
"@parcel/transformer-pug": "^2.12.0",
"@prettier/plugin-pug": "^3.2.0",
"autoprefixer": "10.4.20",
"browserslist": "4.24.2",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"pug": "^3.0.3",
"puppeteer": "^23.6.1",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.14"
},
"engines": {
"yarn": "YARN NO LONGER USED - use npm instead."
}
}