-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "cls-iframe-demo",
"version": "1.0.0",
"description": "CLS iframe demo",
"main": "app.js",
"scripts": {
"dev": "npm run start",
"start": "node -r dotenv/config app.js dotenv_config_path=.env",
"deploy": "pm2 startOrRestart ecosystem.config.js --env production",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/TencentCloud/cls-iframe-demo"
},
"author": "ianhu92",
"license": "Apache-2.0",
"dependencies": {
"config": "^3.2.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-compose": "^4.1.0",
"koa-compress": "^5.0.1",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"koa-views": "^8.0.0",
"pm2": "^5.2.0",
"tencentcloud-sdk-nodejs": "^4.0.551"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/node": "^17.0.41",
"babel-eslint": "^10.1.0",
"eslint": "^8.17.0",
"eslint-config-tencent": "^1.0.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.6.2",
"stylelint": "^13.13.1",
"stylelint-config-tencent": "^1.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.21.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint -c .eslintrc --fix"
],
"*.{html,vue,css,sass,scss,less}": [
"stylelint --fix"
]
}
}