-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.75 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
{
"name": "wakawaka",
"version": "0.12.0",
"type": "module",
"main": "server.ts",
"repository": "https://github.com/aayush-goyal/wakawaka",
"author": "Aayush Goyal <aayushgoyal.mps@gmail.com>",
"license": "MIT",
"scripts": {
"start": "yarn tsx src/server.ts",
"dev": "NODE_ENV=dev nodemon src/server.ts",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest --watchAll --silent=false",
"test-coverage": "jest --coverage --detectOpenHandles --watchAll --silent=false"
},
"dependencies": {
"@sentry/cli": "^2.36.6",
"@sentry/node": "^8.33.1",
"axios": "^1.7.2",
"body-parser": "^1.20.3",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"echarts": "^5.5.1",
"express": "^4.19.2",
"morgan": "^1.10.0",
"winston": "^3.15.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/echarts": "^4.9.22",
"@types/express": "^4.17.21",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.3.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.5",
"ts-jest-mock-import-meta": "^1.2.0",
"tsx": "^4.7.2",
"typescript": "^5.4.4"
}
}