-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "heap",
"version": "1.0.0",
"description": "",
"scripts": {
"clean": "rm -rf ./dist",
"copy-files": "cp -r ./public/ ./dist/public/",
"build": "npm run clean && tsc && npm run copy-files",
"start": "node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"prettier": "npx prettier --write .",
"prettier:check": "npx prettier --check ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/crypto-js": "4.0.1",
"@types/koa-bodyparser": "4.3.1",
"axios": "0.25.0",
"commonjs": "0.0.1",
"crypto-js": "4.0.0",
"dotenv": "10.0.0",
"koa": "2.13.1",
"koa-bodyparser": "4.3.0",
"koa-mount": "4.0.0",
"koa-router": "10.0.0",
"koa-static": "5.0.0",
"ts-node": "10.0.0",
"typescript": "4.3.4",
"yargs": "17.0.1"
},
"devDependencies": {
"@types/koa": "2.13.3",
"@types/koa-logger": "3.1.1",
"@types/koa-mount": "4.0.1",
"@types/koa-router": "7.4.2",
"@types/koa-static": "4.0.2",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"babel-eslint": "10.1.0",
"eslint": "7.30.0",
"koa-logger": "3.2.1",
"prettier": "2.4.1"
}
}