-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.83 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "easysite",
"version": "0.1.1",
"license": "MIT",
"author": "Andrew Sazonov",
"description": "Website template for libraries and applications in the easyScience universe",
"repository": "https://github.com/easyScience/easySite.git",
"bugs": "https://github.com/easyScience/easySite/issues",
"homepage": "https://github.com/easyScience/easySite",
"scripts": {
"browsersync": "browser-sync start --directory --server ./public --files ./public/* --startPath index.html",
"clean": "rimraf public/*",
"copy-assets": "cpx \"src/copy/**/{.*,*}\" public/",
"css-compile": "tailwind build -i src/css/tailwind/tailwind.css -c src/css/tailwind/tailwind.config.js -o src/css/tailwind/style.css",
"css-minify": "cleancss --batch --batch-suffix '.min' src/css/tailwind/style.css src/css/*.css --output public/css/",
"css": "npm-run-all --sequential css-*",
"templates": "pug --obj src/pug.config.js src/index.pug --out public/",
"build": "npm-run-all --sequential clean copy-* templates css",
"watch": "npm-run-all build --parallel watch-templates watch-css browsersync",
"watch-templates": "npm run templates -- --watch",
"watch-css": "npm run css-compile -- --watch"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"autoprefixer": "^10.2.6",
"browser-sync": "^2.26.14",
"clean-css-cli": "^5.3.0",
"cpx": "^1.5.0",
"dateformat": "^4.5.1",
"fs": "0.0.1-security",
"js-yaml": "^4.1.0",
"marked": "^2.1.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"pug": "^3.0.2",
"pug-cli": "^1.0.0-alpha6",
"replace-in-file": "^6.2.0",
"replaceall": "^0.1.6",
"rimraf": "^3.0.2",
"tailwindcss": "^2.2.4",
"text-case": "^1.0.9",
"toml": "^3.0.0"
}
}