-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 969 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
29
30
31
{
"name": "literaturemining.github.io",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently 'npm run serve' 'npm run css -- --watch'",
"serve": "npx @11ty/eleventy --serve",
"css": "npx postcss src/css/global.css -o _site/css/global.css",
"build": "NODE_ENV=production npx @11ty/eleventy && NODE_ENV=production npm run css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/literaturemining/literaturemining.github.io.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/literaturemining/literaturemining.github.io/issues"
},
"homepage": "https://github.com/literaturemining/literaturemining.github.io#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"concurrently": "^8.2.0",
"cssnano": "^6.0.1",
"postcss": "^8.4.28",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0"
}
}