forked from fullstacksjs/wakatime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "wakatime-bot",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "tsc && shx cp -r src/api/web/ dist/api/",
"dev": "nodemon --exec tsm ./src/main.ts --ignore src/data/",
"postinstall": "npm run build",
"start": "node dist/main.js",
"prepare": "husky install",
"lint": "npm-run-all -p lint:*",
"lint:style": "stylelint \"packages/web/src/css/*.css\"",
"lint:es": "eslint . --fix"
},
"dependencies": {
"@fullstacksjs/eslint-config": "6.8.2",
"@fullstacksjs/toolbox": "2.8.4",
"@fullstacksjs/tsconfig": "0.6.0",
"@types/cron": "1.7.3",
"@types/express": "4.17.13",
"@types/node": "16.11.6",
"awilix": "6.0.0",
"axios": "0.22.0",
"cron": "1.8.2",
"dotenv": "10.0.0",
"ejs": "3.1.6",
"eslint": "7.32.0",
"express": "4.17.1",
"grammy": "1.4.2",
"https-proxy-agent": "5.0.0",
"husky": "7.0.4",
"lint-staged": "12.0.2",
"lowdb": "3.0.0",
"nodemon": "2.0.15",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"puppeteer": "13.1.1",
"shx": "0.3.3",
"stylelint": "13.13.1",
"stylelint-config-standard": "22.0.0",
"ts-dedent": "2.2.0",
"ts-node": "10.4.0",
"tsm": "2.1.4",
"typescript": "4.5.2"
},
"volta": {
"node": "16.13.0",
"npm": "8.1.3"
},
"type": "module"
}