-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@netcentric/progux",
"version": "0.0.0-development",
"description": "Progressive user experience library",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Netcentric/progux"
},
"main": "dist/prod/bundle.js",
"contributors": [
{
"name": "Scott Francis",
"email": "[email protected]"
},
{
"name": "Nikolaos Zisis",
"email": "[email protected]"
},
{
"name": "Ines Akrap",
"email": "[email protected]"
},
{
"name": "Alvaro Saburido",
"email": "[email protected]"
}
],
"scripts": {
"watch": "npm run watch-js-css | npm run watch-html",
"watch-js-css": "chokidar 'src/frontend/js' 'src/frontend/css' -c 'npm run build'",
"watch-html": "chokidar 'src/frontend/html' -c 'npm run copy-html'",
"copy-html": "copyfiles -f src/frontend/html/*.html dist",
"build": "rollup --config rollup.config.js",
"webserver": "ws --static.index dist/index.html",
"webserver-dev": "ws --static.index dist/index-dev.html",
"start": "npm run webserver",
"start-dev": "npm run webserver-dev",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@astappiev/rollup-plugin-scss": "^3.0.6",
"chalk": "^5.1.0",
"chokidar-cli": "^3.0.0",
"copyfiles": "2.4.1",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"local-web-server": "^5.2.1",
"rollup": "^2.79.1",
"rollup-plugin-terser": "7.0.2",
"sass": "^1.55.0",
"semantic-release": "^21.0.1"
},
"keywords": [
"performance",
"progressive-user-experience",
"adaptive-loading"
]
}