-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.6 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
48
49
{
"name": "laurielim.github.io",
"version": "1.0.0",
"description": "My portfolio where I will be showcasing my projects.",
"type": "module",
"main": "script.js",
"scripts": {
"watch:sass": "sass src/static/scss:src/_includes/css --watch",
"watch:eleventy": "eleventy --serve",
"start": "run-p watch:*",
"build:dev:sass": "sass src/static/scss:src/_includes/css",
"build:dev:eleventy": "ELEVENTY_ENV=development eleventy",
"build": "run-s build:dev:*",
"build:prod:sass": "sass src/static/scss:src/_includes/css --style=compressed",
"build:prod:eleventy": "ELEVENTY_ENV=production eleventy",
"build:prod": "run-s build:prod:*",
"serve": "browser-sync start --port 8080 --server public --no-open",
"e2e:chrome": "cypress run --browser chrome --e2e",
"e2e:firefox": "cypress run --browser firefox --e2e",
"cy:e2e": "run-s e2e:*",
"tests": "run-p -r serve cy:e2e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laurielim/laurielim.github.io.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/laurielim/laurielim.github.io/issues"
},
"homepage": "https://laurielim.github.io/",
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@vidhill/fortawesome-brands-11ty-shortcode": "^1.0.2",
"html-minifier-terser": "^7.2.0",
"outdent": "^0.8.0",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"terser": "^5.15.0"
},
"devDependencies": {
"browser-sync": "^3.0.3",
"cypress": "^13.15.0",
"npm-run-all": "^4.1.5"
}
}