-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.03 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
61
{
"private": true,
"name": "@benev/website",
"version": "0.0.0-dev.0",
"description": "",
"license": "MIT",
"author": "Chase Moskal <[email protected]>",
"type": "module",
"files": [],
"scripts": {
"build": "run-s clean && run-p typescript importmap links sass && run-s bundle web",
"build-production": "run-s clean && run-p typescript importmap links sass && run-s bundle web-production",
"dev": "run-p start watch",
"clean": "rm -rf x && mkdir -p x",
"importmap": "importly --host=node_modules < package-lock.json > x/importmap.json",
"links": "run-s link-s link-modules link-assets",
"link-s": "ln -s $(realpath s) x/s",
"link-modules": "ln -s $(realpath node_modules) x/node_modules",
"link-assets": "ln -s $(realpath assets) x/assets",
"typescript": "tsc",
"web": "node x/web/build.js debug",
"web-production": "node x/web/build.js production",
"sass": "sass s/web/templates/:x/",
"bundle": "rollup -p @rollup/plugin-node-resolve x/main.js --file x/main.bundle.js",
"watch": "run-p watch-typescript watch-web watch-sass",
"watch-typescript": "npm run -s typescript -- -w",
"watch-web": "chokidar \"x/web/**/*\" -c \"npm run web -s && echo 'rebuilt web'\"",
"watch-sass": "npm run sass -s -- --watch",
"http": "http-server x",
"start": "run-p http watch",
"test": "exit 0"
},
"dependencies": {
"@benev/swipe-snail": "^0.0.4",
"@chasemoskal/magical": "^0.1.3",
"@chasemoskal/snapstate": "^0.0.9",
"es-module-shims": "^1.7.0",
"lit": "^2.6.1",
"xiome": "^0.0.41"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"glob": "^9.2.1",
"http-server": "^14.1.0",
"importly": "^0.2.0",
"npm-run-all": "^4.1.5",
"rollup": "^3.19.0",
"sass": "^1.58.3",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benevolent-games/website.git"
},
"bugs": {
"url": "https://github.com/benevolent-games/website/issues"
},
"homepage": "https://github.com/benevolent-games/website#readme"
}