-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.49 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
{
"name": "policumbent-website",
"version": "1.0.0",
"description": "website for team policumbent",
"main": ".eleventy.js",
"license": "Apache-2.0",
"scripts": {
"prebuild:css": "node-sass static_source/css/main.scss > static/css/main.css",
"build:css": "postcss --use autoprefixer -b \"last 2 versions\" < static/css/main.css | postcss --no-map --use cssnano > static/css/main.min.css",
"js": "uglifyjs static_source/js/*.js -m -c -o static/js/main.min.js",
"css:watch": "onchange 'static_source/css/*/*.scss' -- npm run build:css",
"js:watch": "onchange 'static_source/js/*.js' -- npm run js",
"deploy": "npm run build:css && npm run js && npx @11ty/eleventy",
"dev": "concurrently --kill-others \"npm run js:watch\" \"npm run css:watch\" \"npx @11ty/eleventy --serve\""
},
"repository": {
"type": "git",
"url": "https://github.com/policumbent/policumbent-website"
},
"keywords": [],
"author": "Davide Aimar",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"autoprefixer": "^9.8.6",
"concurrently": "^6.3.0",
"cssnano": "^4.1.10",
"dotenv": "^10.0.0",
"eleventy-plugin-i18n": "^0.1.1",
"fs-extra": "^10.0.0",
"markdown-it": "^12.0.4",
"markdown-it-link-attributes": "^3.0.0",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"node-sass": "^4.14.1",
"onchange": "^7.0.2",
"postcss": ">=8.2.10",
"postcss-cli": "^7.1.1",
"uglify-js": "^3.14.2"
},
"dependencies": {
"highlight.js": "^10.6.0"
}
}