-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "@haumea/namaka",
"description": "user comments and 5-star review system",
"version": "0.0.0-dev.9",
"license": "MIT",
"type": "module",
"author": "Chase Moskal <chasemoskal@gmail.com>",
"files": [
"x",
"s"
],
"main": "x/namaka.js",
"scripts": {
"build": "run-s clean && run-p compile importly",
"stamp": "git rev-parse HEAD > x/commit-id.txt",
"clean": "rimraf x && mkdirp x",
"compile": "tsc",
"importly": "importly < package-lock.json > x/importmap.json",
"watch": "tsc -w",
"server": "node x/server.js 8000",
"start": "http-server",
"test": "cynic node x/tests.test.js"
},
"keywords": [
"comments",
"user-comments",
"reviews",
"5-star-reviews"
],
"dependencies": {
"@chasemoskal/snapstate": "^0.0.8",
"dbmage": "^0.0.0-dev.9",
"es-module-shims": "^1.5.5",
"express": "^4.18.1",
"lit": "^2.2.4",
"renraku": "^0.0.0-dev.58"
},
"devDependencies": {
"@types/express": "^4.17.13",
"cynic": "0.1.0-dev.16",
"http-server": "^14.1.0",
"importly": "^0.2.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.7.2"
}
}