-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.1 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
{
"name": "it-tage-react-workshop-course-material",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm run build:css && concurrently 'npm:dev:*'",
"dev:html": "eleventy --serve",
"dev:css": "postcss src/css/index.css --o src/_includes/css/styles.css --watch --verbose",
"build:css": "postcss src/css/index.css --o src/_includes/css/styles.css",
"build:html": "eleventy",
"build": "cross-env NODE_ENV=production npm run build:css && cross-env NODE_ENV=production npm run build:html && touch dist/.nojekyll",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"cssnano": "^5.1.14",
"dayjs": "^1.11.6",
"gh-pages": "^4.0.0",
"glob": "^8.0.3",
"html-minifier": "^4.0.0",
"jsdom": "^20.0.3",
"postcss": "^8.4.31",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0"
},
"dependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0"
}
}