-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"name": "swc-app",
"version": "1.0.0",
"private": true,
"description": "Api server for wechat.",
"homepage": "https://js.work",
"scripts": {
"task:init": "cp config.sample.yml config.yml",
"dev": "concurrently \"yarn watch-compile\" \"yarn watch-dev\"",
"watch-compile": "swc src -w --out-dir dist",
"watch-dev": "nodemon --watch \"dist/**/*\" -e js ./dist/main.js",
"build": "swc src -d dist",
"start": "NODE_ENV=production node dist/main.js",
"clean": "rm -rf dist",
"prepare": "husky install"
},
"license": "MIT",
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.36",
"@types/express": "^4.17.17",
"@types/node": "^18.14.1",
"chokidar": "^3.5.3",
"concurrently": "^7.6.0",
"husky": "^8.0.3",
"nodemon": "^2.0.20",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"tslib": "^2.3.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@jswork/next": "^1.1.11",
"@jswork/next-dt-log": "^1.1.3",
"@jswork/next-require": "^1.0.5",
"@jswork/next-sets": "^1.0.5",
"@jswork/next-yaml-configuration": "^1.0.3",
"@jswork/protofill": "^1.0.6",
"@jswork/wechat-signature": "^1.0.4",
"args-parser": "^1.3.0",
"koa": "^2.14.2",
"koa-router": "^12.0.0",
"log-timestamp": "^0.3.0"
}
}