-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.43 KB
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
{
"name": "js-lessons",
"version": "5.0.0",
"license": "MIT",
"description": "Web-development. Educational materials for the JS course.",
"main": "./public",
"scripts": {
"clean": "rd /s /q public .cache>nul 2>&1|echo.>nul",
"dev": "webpack --mode development -w",
"start": "node live-server.js",
"prod": "webpack --mode production",
"ls": "git ls-files --cached",
"deploy": "git subtree push --prefix public origin gh-pages",
"staging": "git subtree push --prefix public staging gh-pages",
"icons-worker": "cd icons-worker && yarn prod && cd ../",
"content-worker": "cd content-worker && node build-content.js && yarn prod && cd ../",
"service-worker": "cd service-worker && node config-service-worker.js && yarn prod && cd ../",
"content-only": "yarn content-worker && yarn service-worker",
"scripts-only": "yarn prod && yarn service-worker",
"content-scripts": "yarn prod && yarn content-worker && yarn service-worker",
"full": "yarn icons-worker && yarn content-worker && yarn prod && yarn service-worker"
},
"keywords": [
"javascript",
"courseware",
"lessons",
"development",
"client side"
],
"author": "garevna <irina.h.fylyppova@gmail.com>",
"dependencies": {},
"devDependencies": {
"babel-eslint": "^10.1.0",
"css-loader": "^6.10.0",
"live-server": "^1.2.2",
"style-loader": "^3.3.4",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
}
}