-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 1.47 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": "nestflix.fun",
"version": "1.0.0",
"description": "A site dedicated to fictional movies and tv shows",
"type": "module",
"main": "index.js",
"scripts": {
"prestart": "strict-npm-engines && npm run clean",
"prebuild": "strict-npm-engines && npm run clean",
"clean": "rm -rf _site",
"start:pug": "node build.js",
"start:stylus": "stylus --watch ./src/css --out ./_site/css",
"start:server": "http-server _site --silent",
"start": "concurrently -n stylus,pug,server \"npm run start:stylus\" \"npm run start:pug\" \"npm run start:server\"",
"build:pug": "PRODUCTION=1 node build.js",
"build:stylus": "stylus --compress ./src/css --out ./_site/css",
"build": "npm run build:stylus && npm run build:pug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lynnandtonic/nestflix.fun.git"
},
"bugs": {
"url": "https://github.com/lynnandtonic/nestflix.fun/issues"
},
"homepage": "https://github.com/lynnandtonic/nestflix.fun#readme",
"engines": {
"node": ">=14",
"npm": ">=6.14"
},
"devDependencies": {
"@squoosh/lib": "^0.4.0",
"any-shell-escape": "^0.1.1",
"chokidar": "^3.5.2",
"concurrently": "^6.0.2",
"ffmpeg-static": "^4.3.0",
"fs-extra": "^9.1.0",
"html-minifier": "^4.0.0",
"http-server": "^0.12.3",
"image-size": "^1.0.0",
"js-yaml": "^4.1.0",
"jsdom": "^16.5.3",
"pug": "^3.0.2",
"strict-npm-engines": "0.0.1",
"stylus": "^0.54.8"
}
}