-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.09 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.09 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "muttlee",
"version": "1.2.6",
"description": "Teletext live on the web",
"main": "teletextserver.js",
"repository": {
"type": "git",
"url": "git+https://github.com/peterkvt80/Muttlee.git"
},
"scripts": {
"start": "node teletextserver.js",
"monitor": "nodemon teletextserver.js",
"css:build": "npm run css:compile && npm run css:prefix && npm run css:minify",
"css:compile": "node-sass --output-style=expanded private/muttlee.scss -o public",
"css:compile-watch": "node-sass --output-style=expanded private/muttlee.scss -wo public",
"css:prefix": "postcss public/muttlee.css --use=autoprefixer --map=false --output=public/muttlee.css",
"css:minify": "cleancss --with-rebase --source-map --source-map-inline-sources --output public/muttlee.min.css public/muttlee.css",
"css:watch": "npm run css:compile && npm run css:compile-watch",
"js:build": "npx terser public/libraries/p5.js -o public/libraries/p5.min.js -c -m && npx terser public/libraries/p5.dom.js -o public/libraries/p5.dom.min.js -c -m",
"watch": "npm run css:watch",
"build": "npm run js:build && npm run css:build"
},
"browserslist": [
"> 1%",
"last 4 versions",
"not dead"
],
"keywords": [
"teletext",
"muttlee",
"node"
],
"author": "Peter Kwan",
"license": "ISC",
"dependencies": {
"@pacote/xxhash": "^0.2.3",
"@taiyosen/easy-svn": "^1.0.8",
"colorette": "^2.0.8",
"datastore": "^1.8.2",
"deep-object-diff": "^1.1.0",
"express": "^4.17.1",
"nunjucks": "^3.2.3",
"request": "^2.88.2",
"simple-git": "^3.32.3",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0"
},
"devDependencies": {
"autoprefixer": "latest",
"browserslist": "latest",
"clean-css-cli": "latest",
"command-line-args": "^5.2.0",
"command-line-usage": "^6.1.1",
"postcss": "latest",
"postcss-cli": "latest",
"terser": "latest"
},
"engines": {
"node": ">=0.12.7"
},
"bugs": {
"url": "https://github.com/peterkvt80/Muttlee/issues"
},
"homepage": "https://github.com/peterkvt80/Muttlee#readme"
}