forked from samuelmtimbo/unit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.64 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "unit",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:samuelmtimbo/unit.git",
"author": "Samuel Timbó <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16.13.1"
},
"scripts": {
"v": "ts-node -T src/script/v.ts",
"dev:node": "cross-env NODE_ENV=development node",
"watch:server": "cross-env NODE_ENV=development nodemon --config nodemon.json",
"watch:bundle": "ts-node -T src/script/watch/client.ts",
"watch:client": "run-p watch:bundle watch:worker watch:sw",
"watch:worker": "run-s watch:worker:pod",
"watch:worker:pod": "ts-node -T src/script/watch/worker/pod.ts",
"watch:sw": "ts-node -T src/script/watch/sw.ts",
"watch": "run-p watch:server watch:client",
"start": "node lib/server/index.js",
"setup": "yarn run-s build lib",
"prepare": "",
"tcheck": "tsc --noEmit",
"lib": "shx rm -rf lib; tsc",
"test": "ts-node -T src/test/index.ts",
"build": "run-s build:system build:client build:worker build:sw",
"build:bundle": "ts-node -T src/script/build/client.ts",
"build:client": "run-s build:bundle build:meta build:worker",
"build:system": "ts-node -T src/script/build/system.ts",
"build:worker": "run-s build:worker:pod",
"build:worker:pod": "ts-node -T src/script/build/worker/pod.ts",
"build:sw": "ts-node -T src/script/build/sw.ts",
"build:ext": "ts-node -T src/script/build/ext.ts",
"build:meta": "ts-node -T src/script/build/meta/client.ts",
"lint": "eslint src --ext .ts",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"dependencies": {
"canvas": "2.10.2",
"compression": "1.7.4",
"cors": "2.8.5",
"cross-env": "7.0.3",
"dotenv": "10.0.0",
"express": "4.17.2",
"fuzzy": "0.1.3",
"glob": "7.1.6",
"http-errors": "1.8.0",
"is-ip": "3.1.0",
"joi": "17.4.0",
"jsdom": "19.0.0",
"perfect-freehand": "1.0.16",
"tsup": "6.0.1",
"ws": "7.4.4"
},
"devDependencies": {
"@types/chrome": "0.0.178",
"@types/express": "4.17.13",
"@types/fs-extra": "9.0.13",
"@types/jsdom": "16.2.14",
"@types/node": "16.11.26",
"@types/ws": "8.5.2",
"@typescript-eslint/eslint-plugin": "5.7.0",
"@typescript-eslint/parser": "5.7.0",
"esbuild": "0.14.5",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"fs-extra": "10.1.0",
"nodemon": "2.0.15",
"npm-run-all": "4.1.5",
"npm-run-scripts": "2.1.2",
"prettier": "2.3.1",
"prettier-plugin-organize-imports": "2.1.0",
"shx": "0.3.3",
"ts-node": "10.4.0",
"typescript": "4.5.4"
}
}